Package com.gengoai.reflection
Class ReflectionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.gengoai.reflection.ReflectionException
-
- All Implemented Interfaces:
Serializable
public class ReflectionException extends Exception
Specialized exception for reflection errors- Author:
- David B. Bracewell
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReflectionException(String message)
Instantiates a new Reflection exception.ReflectionException(Throwable throwable)
Instantiates a new Reflection exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ReflectionException
public ReflectionException(Throwable throwable)
Instantiates a new Reflection exception.- Parameters:
throwable
- The throwable being wrapped
-
ReflectionException
public ReflectionException(String message)
Instantiates a new Reflection exception.- Parameters:
message
- the error message
-
-