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