View Javadoc

1   /*
2    * <cvs:source>$Source: /devel/astrogrid/mySpace/client/src/java/org/astrogrid/store/adapter/aladin/AladinAdapterSecurityException.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: AladinAdapterSecurityException.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.1  2004/09/23 16:32:02  dave
20   *   Added better Exception handling ....
21   *   Added initial mock container ....
22   *   Added initial root container tests ...
23   *
24   * </cvs:log>
25   *
26   */
27  package org.astrogrid.store.adapter.aladin ;
28  
29  /***
30   * An exception thrown if the adapter attempts to access something it is not allowed to.
31   * * @deprecated use {@link org.astrogrid.store.tree} instead
32   */
33  public class AladinAdapterSecurityException
34  	extends AladinAdapterException
35  	{
36  	/***
37  	 * Public constructor, with cause and message.
38  	 * @param message The Exception message.
39  	 *
40  	 */
41  	public AladinAdapterSecurityException(String message)
42  		{
43  		super(message, null) ;
44  		}
45  
46  	/***
47  	 * Public constructor, with cause and message.
48  	 * @param message The Exception message.
49  	 * @param cause   The Exception cause.
50  	 *
51  	 */
52  	public AladinAdapterSecurityException(String message, Throwable cause)
53  		{
54  		super(message, cause) ;
55  		}
56  
57  	}