eleme.openapi.sdk.api.exception.UnauthorizedException Maven / Gradle / Ivy
The newest version!
package eleme.openapi.sdk.api.exception;
public class UnauthorizedException extends ServiceException {
public UnauthorizedException() {
super("UNAUTHORIZED", "token认证失败,请重新申请token");
}
public UnauthorizedException(String message) {
super("UNAUTHORIZED", message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy