Package com.helixframework.reflection
Class ReflectionRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.helixframework.reflection.ReflectionRuntimeException
- All Implemented Interfaces:
Serializable
Exception thrown if errors are encountered during reflection operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionReflectionRuntimeException(String message) Creates a new instance ofReflectionRuntimeExceptionwith the given errormessage.ReflectionRuntimeException(String message, Throwable cause) Creates a new instance ofReflectionRuntimeExceptionwith the given message and cause.Creates a new instance ofReflectionRuntimeExceptionwith the given cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ReflectionRuntimeException
Creates a new instance ofReflectionRuntimeExceptionwith the given errormessage.- Parameters:
message- the error message
-
ReflectionRuntimeException
Creates a new instance ofReflectionRuntimeExceptionwith the given cause.- Parameters:
cause- the cause of the exception
-
ReflectionRuntimeException
Creates a new instance ofReflectionRuntimeExceptionwith the given message and cause.- Parameters:
message- the error messagecause- the cause of the exception
-