01: // $Id: RuntimeSQLException.java 12 2007-08-29 05:23:13Z jcamaia $
02:
03: package net.sf.persist;
04:
05: @SuppressWarnings("serial")
06: public final class PersistException extends RuntimeException {
07:
08: public PersistException(final Throwable cause) {
09: super (cause);
10: }
11:
12: public PersistException(final String message) {
13: super (message);
14: }
15:
16: public PersistException(final String message, final Throwable cause) {
17: super(message, cause);
18: }
19:
20: }
|