View Javadoc
1 /* 2 * ReflectionException.java 3 * Created on September 4, 2003 4 * 5 * The Blues Framework - A lightweight application framework 6 * Copyright (C) 2003 Lonnie Pryor 7 * http://blues.lonniepryor.com 8 * 9 * This library is free software; you can redistribute it and/or modify it under the 10 * terms of the GNU Lesser General Public License as published by the Free Software 11 * Foundation; either version 2.1 of the License, or (at your option) any later 12 * version. 13 * 14 * This library is distributed in the hope that it will be useful, but WITHOUT ANY 15 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 16 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. 17 * 18 * You should have received a copy of the GNU Lesser General Public License along 19 * with this library; if not, write to: 20 * 21 * The Free Software Foundation, Inc. 22 * 59 Temple Place, Suite 330 23 * Boston, MA 02111-1307 USA 24 * 25 */ 26 package com.lonniepryor.blues.util; 27 28 /*** 29 * Exception thrown when a reflective invocation fails. 30 * 31 * @author Lonnie Pryor 32 * @version $Revision: 1.1 $ 33 */ 34 public class ReflectionException extends BluesException { 35 /*** 36 * Creates a new ReflectionException object. 37 */ 38 public ReflectionException () { 39 } 40 41 /*** 42 * Creates a new ReflectionException object. 43 * 44 * @param message The error message. 45 */ 46 public ReflectionException (String message) { 47 super(message); 48 } 49 50 /*** 51 * Creates a new ReflectionException object. 52 * 53 * @param message The error message. 54 * @param cause The cause of this error. 55 */ 56 public ReflectionException (String message, Throwable cause) { 57 super(message, cause); 58 } 59 60 /*** 61 * Creates a new ReflectionException object. 62 * 63 * @param cause The cause of this error. 64 */ 65 public ReflectionException (Throwable cause) { 66 super(cause); 67 } 68 }

This page was automatically generated by Maven