View Javadoc

1   /*
2    *
3    * <cvs:source>$Source: /devel/astrogrid/filestore/common/src/java/org/astrogrid/filestore/common/exception/FileStoreTransferException.java,v $</cvs:source>
4    * <cvs:author>$Author: dave $</cvs:author>
5    * <cvs:date>$Date: 2004/07/21 18:11:55 $</cvs:date>
6    * <cvs:version>$Revision: 1.2 $</cvs:version>
7    * <cvs:log>
8    *   $Log: FileStoreTransferException.java,v $
9    *   Revision 1.2  2004/07/21 18:11:55  dave
10   *   Merged development branch, dave-dev-200407201059, into HEAD
11   *
12   *   Revision 1.1.2.1  2004/07/20 19:10:40  dave
13   *   Refactored to implement URL import
14   *
15   * </cvs:log>
16   *
17   */
18  package org.astrogrid.filestore.common.exception ;
19  
20  /***
21   * An Exception thrown if a transfer operation fails.
22   *
23   */
24  public class FileStoreTransferException
25  	extends FileStoreException
26  	{
27  
28      /***
29       * Public constructor.
30       * This should not be used in the main code.
31       * This enables Axis to re-construct the Exception on the client side by treating it as a Bean.
32       *
33       */
34      public FileStoreTransferException()
35          {
36          super() ;
37          }
38  
39      /***
40       * Public constructor.
41       * @param message The Exception message.
42       *
43       */
44      public FileStoreTransferException(String message)
45          {
46          super(message) ;
47          }
48  
49      /***
50       * Public constructor.
51       * @param cause The root cause of this Exception.
52       *
53       */
54      public FileStoreTransferException(Throwable cause)
55          {
56          super(cause) ;
57          }
58  
59      /***
60       * Public constructor.
61       * @param message The Exception message.
62       * @param cause   The root cause of this Exception.
63       *
64       */
65      public FileStoreTransferException(String message, Throwable cause)
66          {
67          super(message, cause) ;
68          }
69  
70  	}