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