View Javadoc

1   /*
2    * <cvs:source>$Source: /devel/astrogrid/filemanager/common/src/java/org/astrogrid/filemanager/common/exception/FileManagerException.java,v $</cvs:source>
3    * <cvs:author>$Author: jdt $</cvs:author>
4    * <cvs:date>$Date: 2005/01/13 17:23:15 $</cvs:date>
5    * <cvs:version>$Revision: 1.3 $</cvs:version>
6    * <cvs:log>
7    *   $Log: FileManagerException.java,v $
8    *   Revision 1.3  2005/01/13 17:23:15  jdt
9    *   merges from dave-dev-200412201250
10   *
11   *   Revision 1.2.4.1  2005/01/12 13:16:27  dave
12   *   Changed tabs to spaces ...
13   *
14   *   Revision 1.2  2004/11/25 00:20:29  jdt
15   *   Merge from dave-dev-200410061224-200411221626
16   *
17   *   Revision 1.1.2.3  2004/11/13 01:39:03  dave
18   *   Modifications to support the new client API ...
19   *
20   *   Revision 1.1.2.2  2004/11/04 15:50:17  dave
21   *   Added ivorn pareser and factory.
22   *
23   *   Revision 1.1.2.1  2004/10/07 16:04:38  dave
24   *   Added exception to addAccount
25   *
26   * </cvs:log>
27   *
28   */
29  package org.astrogrid.filemanager.common.exception ;
30  
31  /***
32   * Base class for FileManager exceptions.
33   *
34   */
35  public class FileManagerException
36      extends Exception
37      {
38  
39      /***
40       * Public constructor.
41       *
42       */
43      public FileManagerException()
44          {
45          super() ;
46          }
47  
48      /***
49       * Public constructor.
50       * @param message The exception message.
51       *
52       */
53      public FileManagerException(String message)
54          {
55          super(message) ;
56          }
57  
58      /***
59       * Public constructor.
60       * @param cause The exception cause.
61       *
62       */
63      public FileManagerException(Throwable cause)
64          {
65          super(cause) ;
66          }
67  
68      /***
69       * Public constructor.
70       * @param message The exception message.
71       * @param cause The exception cause.
72       *
73       */
74      public FileManagerException(String message, Throwable cause)
75          {
76          super(message, cause) ;
77          }
78  
79      }