Class ServerException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ServiceException

public class ServerException extends RuntimeException
Signals that a server error of some kind has occurred. This exception is the superclass of all the other exceptions defined and used in a server.
See Also:
  • Constructor Details

    • ServerException

      public ServerException()
      Constructs a new ServerException instance.
    • ServerException

      public ServerException(String message)
      Constructs a new ServerException with a message.
      Parameters:
      message - the detail message.
    • ServerException

      public ServerException(Throwable cause)
      Constructs a new ServerException with a cause.
      Parameters:
      cause - the cause of the exception.
    • ServerException

      public ServerException(String message, Throwable cause)
      Constructs a new ServerException with a message and cause.
      Parameters:
      message - the detail message.
      cause - the cause of the exception.