package com.hwlcn.security.authz; public class UnauthorizedException extends AuthorizationException { public UnauthorizedException() { super(); } public UnauthorizedException(String message) { super(message); } public UnauthorizedException(Throwable cause) { super(cause); } public UnauthorizedException(String message, Throwable cause) { super(message, cause); } }