All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.hdy.common.exceptions.TokenInvalidException Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package com.github.hdy.common.exceptions;

/**
 * 表示对请求资源的访问被服务器拒绝(无权限等)
 *
 * @author hdy
 * @date 2019/6/25
 */
public class TokenInvalidException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    public TokenInvalidException() {
        super();
    }

    public TokenInvalidException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy