Class InternalException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ApplicationCodeNotFoundException, CryptoException, MapperException, NotificationConfigurationException, UnavailableException, UnhealthyException

public class InternalException extends BaseException
Thrown when an internal server error occurs.
See Also:
  • Constructor Details

    • InternalException

      public InternalException()
      Creates a new instance.
    • InternalException

      public InternalException(String message)
      Creates a new instance with the given message.
      Parameters:
      message - the detail message
    • InternalException

      public InternalException(String message, Throwable cause)
      Creates a new instance with the given message and cause.
      Parameters:
      message - the detail message
      cause - the cause
    • InternalException

      public InternalException(Throwable cause)
      Creates a new instance with the given cause.
      Parameters:
      cause - the cause
    • InternalException

      public InternalException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      Creates a new instance.
      Parameters:
      message - the detail message
      cause - the cause
      enableSuppression - whether suppression is enabled
      writableStackTrace - whether the stack trace is writable
  • Method Details