com.obatis.core.exception.NotAuthHandleException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obatis-web Show documentation
Show all versions of obatis-web Show documentation
obatis-web, apply web project
package com.obatis.core.exception;
/**
* 自定义未认证异常类
* @author HuangLongPu
*/
public class NotAuthHandleException extends RuntimeException {
/**
* 异常信息
*/
private String message;
public NotAuthHandleException(String message) {
super(message);
}
public void setMessage(String message) {
this.message = message;
}
@Override
public String getMessage() {
return message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy