Class ForbiddenException

All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap, org.refcodes.mixin.StatusCodeAccessor<HttpStatusCode>

public class ForbiddenException extends HttpStatusException
The Class ForbiddenException.
See Also:
  • Constructor Details

    • ForbiddenException

      public ForbiddenException(String aMessage, String aErrorCode)
      Instantiates a new forbidden exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • ForbiddenException

      public ForbiddenException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new forbidden exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • ForbiddenException

      public ForbiddenException(String aMessage, Throwable aCause)
      Instantiates a new forbidden exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • ForbiddenException

      public ForbiddenException(String aMessage)
      Instantiates a new forbidden exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • ForbiddenException

      public ForbiddenException(Throwable aCause, String aErrorCode)
      Instantiates a new forbidden exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • ForbiddenException

      public ForbiddenException(Throwable aCause)
      Instantiates a new forbidden exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.