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

org.liveSense.api.sql.exceptions.SQLException Maven / Gradle / Ivy

The newest version!
package org.liveSense.api.sql.exceptions;

import java.io.Serializable;

public class SQLException extends Exception implements Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = 2373880253277343932L;
	private String msg;


	public SQLException() {
		super();
	}

	public SQLException(String msg) {
		super(msg);
		this.msg = msg;
	}

	public SQLException(Throwable cause) {
		super(cause);
		this.msg = cause.getMessage();
	}

	public SQLException(String msg, Throwable cause) {
		super(msg, cause);
		this.msg = msg;
	}

	public String getMessage() {
		return msg;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy