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

org.wf.jwtp.exception.ErrorTokenException Maven / Gradle / Ivy

The newest version!
package org.wf.jwtp.exception;

/**
 * token验证失败异常
 *
 * @author wangfan
 */
public class ErrorTokenException extends TokenException {
    private static final long serialVersionUID = -2283411683871567063L;

    public ErrorTokenException() {
        super(401, "身份验证失败");
    }

    public ErrorTokenException(String message) {
        super(401, message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy