1 package net.sf.maia.core.storage;
2
3 import net.sf.maia.MaiaRuntimeException;
4
5 /***
6 *
7 *
8 * @author Magnus Grimsell
9 */
10 public class StorageException extends MaiaRuntimeException
11 {
12
13 /***
14 *
15 */
16 public StorageException()
17 {
18 super();
19 }
20 /***
21 * @param message
22 */
23 public StorageException(String message)
24 {
25 super(message);
26 }
27 /***
28 * @param message
29 * @param cause
30 */
31 public StorageException(String message, Throwable cause)
32 {
33 super(message, cause);
34 }
35 /***
36 * @param cause
37 */
38 public StorageException(Throwable cause)
39 {
40 super(cause);
41 }
42 }