Class ProtocolException

All Implemented Interfaces:
Serializable

public class ProtocolException extends RuntimeException
Used when we need to indicate failure but the (Servlet) API doesn't declare any appropriate exceptions.
See Also:
  • Constructor Details

    • ProtocolException

      public ProtocolException()
      Construct a ProtocolException with no detail message or cause.
    • ProtocolException

      public ProtocolException(String message, Throwable cause)
      Construct a ProtocolException with the given detail message and cause.
      Parameters:
      message - the detail message
      cause - the cause
    • ProtocolException

      public ProtocolException(String message)
      Construct a ProtocolException with the given detail message.
      Parameters:
      message - the detail message
    • ProtocolException

      public ProtocolException(Throwable cause)
      Construct a ProtocolException with the given cause.
      Parameters:
      cause - the cause