You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
isspst/src/main/java/info/bukova/isspst/dao/IntegrityException.java

19 lines
350 B
Java

package info.bukova.isspst.dao;
@SuppressWarnings("serial")
public class IntegrityException extends RuntimeException {
public IntegrityException(String message) {
super( message );
}
public IntegrityException(Throwable root) {
super( root );
}
public IntegrityException(String message, Throwable root) {
super( message, root );
}
}