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

com.github.xiaobingzhou.messageframe.handler.HandlerException Maven / Gradle / Ivy

package com.github.xiaobingzhou.messageframe.handler;

/**
 * 定义MessageFrameHandlerException异常
 * @author bell.zhouxiaobing
 * @since 1.2
 */
public class HandlerException extends Exception{

	/**
	 * 
	 */
	private static final long serialVersionUID = 1192892909380452945L;
	
	public HandlerException(String message) {
		super(message);
	}
	public HandlerException(Throwable throwable) {
		super(throwable);
	}
	public HandlerException(String message, Throwable throwable) {
		super(message, throwable);
	}
	
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy