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

com.obatis.core.exception.NotAuthHandleException Maven / Gradle / Ivy

There is a newer version: 3.0.1-release
Show newest version
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