1
2
3
4
5
6
7
8
9 package ca.uhn.cache.internal.exception;
10
11
12 /***
13 * The root class for implementation specific query result store 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:54:42 $ by $Author: bryan_tripp $
17 */
18 public abstract class QueryResultStoreException extends Exception {
19
20 /***
21 * {@inheritDoc}
22 */
23 public QueryResultStoreException( Throwable theCause ) {
24 super( theCause );
25 }
26
27 /***
28 * {@inheritDoc}
29 */
30 public QueryResultStoreException( String theMessage, Throwable theCause ) {
31 super( theMessage, theCause );
32 }
33
34 /***
35 * {@inheritDoc}
36 */
37 public QueryResultStoreException( String theMessage ) {
38 super ( theMessage );
39 }
40
41 }