package com.lyms.cm.qiniu; /** * The class AuthException wrapps an Authenticate exception when using API, * typically resulting from authenticate-related issues. * */ public class AuthException extends Exception { private static final long serialVersionUID = 1L; protected AuthException() { super(); } public AuthException(String detailMessage) { super(detailMessage); } public AuthException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public AuthException(Throwable throwable) { super(throwable); } }