KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > persist > RuntimeSQLException


1 // $Id: RuntimeSQLException.java 12 2007-08-29 05:23:13Z jcamaia $
2

3 package net.sf.persist;
4
5 @SuppressWarnings JavaDoc("serial")
6 public final class RuntimeSQLException extends RuntimeException JavaDoc {
7
8     public RuntimeSQLException(final Throwable JavaDoc cause) {
9         super(cause);
10     }
11
12     public RuntimeSQLException(final String JavaDoc message) {
13         super(message);
14     }
15
16     public RuntimeSQLException(final String JavaDoc message, final Throwable JavaDoc cause) {
17         super(message, cause);
18     }
19
20 }
21
Popular Tags