1
2
3
4
5
6
7
8
9 package ca.uhn.cache.exception;
10
11
12 /***
13 * The root class for implementation specific data source exceptions.
14 *
15 * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara</a>
16 * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:53:04 $ by $Author: bryan_tripp $
17 */
18 public abstract class DataSourceException extends Exception {
19
20 /***
21 * {@inheritDoc}
22 */
23 public DataSourceException( Throwable theCause ) {
24 super( theCause );
25 }
26
27 /***
28 * {@inheritDoc}
29 */
30 public DataSourceException( String theMessage, Throwable theCause ) {
31 super( theMessage, theCause );
32 }
33
34 }