Class ReflectionException

All Implemented Interfaces:
Serializable

public class ReflectionException extends RuntimeException
Thrown when an error occurs during reflection.
See Also:
  • Constructor Details

    • ReflectionException

      public ReflectionException()
      Constructs a new reflection exception with no details.
    • ReflectionException

      public ReflectionException(@Nullable @Nullable String message)
      Constructs a new reflection exception with the specified message.
      Parameters:
      message - The message of the exception
    • ReflectionException

      public ReflectionException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause)
      Constructs a new reflection exception with the specified message and cause.
      Parameters:
      message - The message of the exception
      cause - The cause of the exception
    • ReflectionException

      public ReflectionException(@Nullable @Nullable Throwable cause)
      Constructs a new reflection exception with the specified cause.
      Parameters:
      cause - The cause of the exception