Class UnauthorizedException

All Implemented Interfaces:
Serializable

public class UnauthorizedException extends HttpException

A HTTP exception that indicates that the access to a server resource is Unauthorized (401).

Since:
1.0
Author:
Jeremy Kuhn
See Also:
  • Constructor Details

    • UnauthorizedException

      public UnauthorizedException()

      Creates an unauthorized exception.

    • UnauthorizedException

      public UnauthorizedException(String message)

      Creates an unauthorized exception with the specified message.

      Parameters:
      message - a message
    • UnauthorizedException

      public UnauthorizedException(Throwable cause)

      Creates an unauthorized exception with the specified cause.

      Parameters:
      cause - a cause
    • UnauthorizedException

      public UnauthorizedException(String message, Throwable cause)

      Creates an unauthorized exception with the specified message and cause.

      Parameters:
      message - a message
      cause - a cause