Class InternalServerErrorException

  • All Implemented Interfaces:
    Serializable, Response

    public class InternalServerErrorException
    extends ResourceException
    An exception that is thrown during an operation on a resource when the server encountered an unexpected condition which prevented it from fulfilling the request.
    See Also:
    Serialized Form
    • Constructor Detail

      • InternalServerErrorException

        public InternalServerErrorException()
        Constructs a new exception with null as its detail message.
      • InternalServerErrorException

        public InternalServerErrorException​(String message)
        Constructs a new exception with the specified detail message.
        Parameters:
        message - The detail message.
      • InternalServerErrorException

        public InternalServerErrorException​(String message,
                                            Throwable cause)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        message - The detail message.
        cause - The exception which caused this exception to be thrown.
      • InternalServerErrorException

        public InternalServerErrorException​(Throwable cause)
        Constructs a new exception with the specified cause.
        Parameters:
        cause - The exception which caused this exception to be thrown.