Class RuntimeError

All Implemented Interfaces:
Serializable

public class RuntimeError extends RuntimeException
Base runtime exception for com.github.ngoanh2n
See Also:
  • Constructor Details

    • RuntimeError

      public RuntimeError(String message)
      Construct a new runtime exception with the specified detail message.
      Parameters:
      message - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
    • RuntimeError

      public RuntimeError(Throwable cause)
      Construct a new runtime exception with the specified cause and a detail message.
      Parameters:
      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.)
    • RuntimeError

      public RuntimeError(String message, Throwable cause)
      Construct a new runtime exception with the specified detail message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.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.)