package org.flasby.security; /** * The 403 (Forbidden) status code indicates that the server understood * the request but refuses to authorize it...If authentication * credentials were provided in the request, the server considers * them insufficient to grant access. */ public class Auth403Exception extends AuthException { public Auth403Exception() { super(403); } public Auth403Exception(Throwable cause) { super(403, cause); } }