View Javadoc

1   /*
2    * <cvs:source>$Source: /devel/astrogrid/filestore/common/src/java/org/astrogrid/filestore/common/exception/FileStoreException.java,v $</cvs:source>
3    * <cvs:author>$Author: dave $</cvs:author>
4    * <cvs:date>$Date: 2004/07/14 13:50:29 $</cvs:date>
5    * <cvs:version>$Revision: 1.2 $</cvs:version>
6    * <cvs:log>
7    *   $Log: FileStoreException.java,v $
8    *   Revision 1.2  2004/07/14 13:50:29  dave
9    *   Merged development branch, dave-dev-200406301228, into HEAD
10   *
11   *   Revision 1.1.2.2  2004/07/06 09:16:12  dave
12   *   Added delegate interface and mock implementation
13   *
14   *   Revision 1.1.2.1  2004/07/05 04:50:29  dave
15   *   Created initial FileStore components
16   *
17   * </cvs:log>
18   *
19   */
20  package org.astrogrid.filestore.common.exception ;
21  
22  /***
23   * A generic Exception for FileStore operations.
24   *
25   */
26  public class FileStoreException
27  	extends Exception
28  	{
29  	/***
30  	 * Public constructor.
31  	 *
32  	 */
33  	public FileStoreException()
34  		{
35  		super() ;
36  		}
37  
38  	/***
39  	 * Public constructor.
40  	 * @param message The Exception message.
41  	 *
42  	 */
43  	public FileStoreException(String message)
44  		{
45  		super(message) ;
46  		}
47  
48      /***
49       * Public constructor.
50       * @param cause The root cause of this Exception.
51       *
52       */
53      public FileStoreException(Throwable cause)
54          {
55          super(cause) ;
56          }
57  
58      /***
59       * Public constructor.
60       * @param message The Exception message.
61       * @param cause   The root cause of this Exception.
62       *
63       */
64      public FileStoreException(String message, Throwable cause)
65          {
66          super(message, cause) ;
67          }
68  	}