Class UnknownClassException

All Implemented Interfaces:
Serializable

public class UnknownClassException extends RuntimeException
A RuntimeException equivalent of the JDK's ClassNotFoundException, to maintain a RuntimeException paradigm.
Since:
0.5.0
See Also:
  • Constructor Details

    • UnknownClassException

      public UnknownClassException()
      Creates a new UnknownClassException.
    • UnknownClassException

      public UnknownClassException(String message)
      Constructs a new UnknownClassException.
      Parameters:
      message - the reason for the exception
    • UnknownClassException

      public UnknownClassException(Throwable cause)
      Constructs a new UnknownClassException.
      Parameters:
      cause - the underlying Throwable that caused this exception to be thrown.
    • UnknownClassException

      public UnknownClassException(String message, Throwable cause)
      Constructs a new UnknownClassException.
      Parameters:
      message - the reason for the exception
      cause - the underlying Throwable that caused this exception to be thrown.