com.github.quintans.jdbc.exceptions.PersistenceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simplejdbc Show documentation
Show all versions of simplejdbc Show documentation
Utility class for an eazy JDBC
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