View Javadoc

1   /*
2    * <cvs:source>$Source: /devel/astrogrid/mySpace/client/src/java/org/astrogrid/store/adapter/aladin/AladinAdapterException.java,v $</cvs:source>
3    * <cvs:author>$Author: clq2 $</cvs:author>
4    * <cvs:date>$Date: 2004/11/17 16:22:53 $</cvs:date>
5    * <cvs:version>$Revision: 1.3 $</cvs:version>
6    * <cvs:log>
7    *   $Log: AladinAdapterException.java,v $
8    *   Revision 1.3  2004/11/17 16:22:53  clq2
9    *   nww-itn07-704
10   *
11   *   Revision 1.2.20.1  2004/11/16 16:47:28  nw
12   *   copied aladinAdapter interfaces into a neutrally-named package.
13   *   deprecated original interfaces.
14   *   javadoc
15   *
16   *   Revision 1.2  2004/09/28 10:24:19  dave
17   *   Added AladinAdapter interfaces and mock implementation.
18   *
19   *   Revision 1.1.2.2  2004/09/27 22:46:53  dave
20   *   Added AdapterFile interface, with input and output stream API.
21   *
22   *   Revision 1.1.2.1  2004/09/23 16:32:01  dave
23   *   Added better Exception handling ....
24   *   Added initial mock container ....
25   *   Added initial root container tests ...
26   *
27   * </cvs:log>
28   *
29   */
30  package org.astrogrid.store.adapter.aladin ;
31  
32  /***
33   * A base class for all our exceptions.
34   * This allows the client to catch all our exceptions using one catch statement.
35   * * @deprecated use {@link org.astrogrid.store.tree} instead
36   */
37  public class AladinAdapterException
38  	extends Exception
39  	{
40  	/***
41  	 * Public constructor, with message.
42  	 * @param message The Exception message.
43  	 *
44  	 */
45  	public AladinAdapterException(String message)
46  		{
47  		super(message) ;
48  		}
49  
50  	/***
51  	 * Public constructor, with cause and message.
52  	 * @param message The Exception message.
53  	 * @param cause   The Exception cause.
54  	 *
55  	 */
56  	public AladinAdapterException(String message, Throwable cause)
57  		{
58  		super(message, cause) ;
59  		}
60  
61  	}