1 /*
2 * <cvs:source>$Source: /devel/astrogrid/filemanager/common/src/java/org/astrogrid/filemanager/common/exception/FileManagerServiceException.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: FileManagerServiceException.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/18 14:39:32 dave
18 * Added SOAP delegate, RemoteException decoding and test case.
19 *
20 * Revision 1.1.2.2 2004/11/13 01:39:03 dave
21 * Modifications to support the new client API ...
22 *
23 * Revision 1.1.2.1 2004/10/21 21:08:52 dave
24 * Added config interface and mock implementation.
25 * Partial implementation of data import into FileStore via direct URL transfer.
26 *
27 * </cvs:log>
28 *
29 */
30 package org.astrogrid.filemanager.common.exception ;
31
32 /***
33 * Exception thrown to indicate a problem with the FileManager service, e.g A problem with the service configuration.
34 *
35 */
36 public class FileManagerServiceException
37 extends FileManagerException
38 {
39
40 /***
41 * Public constructor.
42 * Required to enable Axis to create an exception.
43 *
44 */
45 public FileManagerServiceException()
46 {
47 super() ;
48 }
49
50 /***
51 * Public constructor.
52 * @param message The exception message.
53 *
54 */
55 public FileManagerServiceException(String message)
56 {
57 super(message) ;
58 }
59
60 /***
61 * Public constructor.
62 * @param message The exception message.
63 * @param cause The exception cause.
64 *
65 */
66 public FileManagerServiceException(String message, Throwable cause)
67 {
68 super(message, cause) ;
69 }
70 }