AuthException.java

package org.flasby.security;

/**
 * The 401 (Unauthorized) status code indicates that the request has not
 * been applied because it lacks valid authentication credentials for the
 * target resource.
 */
public class AuthException extends HttpResponseException {

    public AuthException(int status) {
        super(status);
    }

    public AuthException(int status, Throwable cause) {
        super(status, cause);
    }
}