View Javadoc

1   /*
2    * Copyright (c) 2004-2005, University Health Network.  All rights reserved. Distributed under the BSD 
3    * license (see http://opensource.org/licenses/bsd-license.php).
4    *  
5    * QueryResultStoreException.java
6    *
7    * Created on 8-Dec-2004 at 2:51:32 PM
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  }