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

com.github.quintans.jdbc.exceptions.PersistenceException Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.github.quintans.jdbc.exceptions;

public class PersistenceException extends RuntimeException {

	private static final long serialVersionUID = 1L;
	
	public PersistenceException(String msg) {
		super(msg);		
	}

	public PersistenceException(String msg, Throwable t) {
		super(msg, t);
	}

	public PersistenceException(Throwable t) {
		super(t);		
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy