Class ReflectionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.tomatengames.util.exception.ReflectionException
- All Implemented Interfaces:
Serializable
A
RuntimeException that indicates a problem related to reflection.
It is typically used to wrap ReflectiveOperationExceptions.- Since:
- 1.5
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newReflectionException.ReflectionException(String message) Creates a newReflectionException.ReflectionException(String message, Throwable cause) Creates a newReflectionException.ReflectionException(Throwable cause) Creates a newReflectionException. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ReflectionException
public ReflectionException()Creates a newReflectionException. -
ReflectionException
Creates a newReflectionException.- Parameters:
message- The detail message.
-
ReflectionException
Creates a newReflectionException.- Parameters:
cause- The cause.
-
ReflectionException
Creates a newReflectionException.- Parameters:
message- The detail message.cause- The cause.
-