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

cn.sylinx.hbatis.exception.ExecutingException Maven / Gradle / Ivy

The newest version!
package cn.sylinx.hbatis.exception;

/**
 * 执行运行时异常
 * 
 * @author han
 *
 */
@SuppressWarnings("serial")
public class ExecutingException extends HbatisException {

	public ExecutingException() {
		super();
	}

	public ExecutingException(String message) {
		super(message);
	}

	public ExecutingException(String message, Throwable cause) {
		super(message, cause);
	}

	public ExecutingException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy