Class SystemException

All Implemented Interfaces:
Serializable

public class SystemException extends AbstractRuntimeException
A generic runtime error thrown when a more specific exception does not exist.
Since:
1.1
See Also:
  • Constructor Details

    • SystemException

      public SystemException(String message)
      Construct a SystemException with the specified detail message.
      Parameters:
      message - the detail message (which is saved for later retrieval by the AbstractRuntimeException.getMessage() method).
    • SystemException

      public SystemException(String message, Throwable cause)
      Construct a SystemException with the specified detail message and nested exception.
      Parameters:
      message - the detail message (which is saved for later retrieval by the AbstractRuntimeException.getMessage() method).
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.).