1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 }