package com.wechi.adweb.bridge.exception; /** * @author wfansh */ public class UnauthorizedException extends Exception { public UnauthorizedException() { super(); } public UnauthorizedException(String message) { super(message); } }