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

com.fly.jdbc.exception.FlySQLException Maven / Gradle / Ivy

package com.fly.jdbc.exception;

/**
 * SqlFly 在执行SQL时抛出的异常
 */
public class FlySQLException extends RuntimeException {

	private static final long serialVersionUID = 6806129545290130142L;

	/**
	 * 获得一个异常FlySQLException
	 * 
	 * @param message 异常描述
	 * @param cause 异常原因
	 */
	public FlySQLException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy