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

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

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

/**
 * TokenException
 *
 * @author wangfan
 */
public abstract class TokenException extends RuntimeException {
    private static final long serialVersionUID = 2413958299445359500L;
    private int code;

    public void setCode(int code) {
        this.code = code;
    }

    public int getCode() {
        return code;
    }

    public TokenException(int code, String message) {
        super(message);
        this.code = code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy