/src/main/net/sf/persist/RuntimeSQLException.java
http://github.com/rufiao/persist · Java · 20 lines · 13 code · 6 blank · 1 comment · 0 complexity · f56798df8fac34dd9375845977dc2674 MD5 · raw file
- // $Id$
-
- package net.sf.persist;
-
- @SuppressWarnings("serial")
- public final class RuntimeSQLException extends RuntimeException {
-
- public RuntimeSQLException(final Throwable cause) {
- super(cause);
- }
-
- public RuntimeSQLException(final String message) {
- super(message);
- }
-
- public RuntimeSQLException(final String message, final Throwable cause) {
- super(message, cause);
- }
-
- }