Class ReflectionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.tomatengames.util.exception.ReflectionException
All Implemented Interfaces:
Serializable

public class ReflectionException extends RuntimeException
A RuntimeException that indicates a problem related to reflection. It is typically used to wrap ReflectiveOperationExceptions.
Since:
1.5
See Also:
  • Constructor Details

    • ReflectionException

      public ReflectionException()
      Creates a new ReflectionException.
    • ReflectionException

      public ReflectionException(String message)
      Creates a new ReflectionException.
      Parameters:
      message - The detail message.
    • ReflectionException

      public ReflectionException(Throwable cause)
      Creates a new ReflectionException.
      Parameters:
      cause - The cause.
    • ReflectionException

      public ReflectionException(String message, Throwable cause)
      Creates a new ReflectionException.
      Parameters:
      message - The detail message.
      cause - The cause.