1
2
3
4
5
6
7
8
9
10
11
12
13
14 package org.astrogrid.applications.manager.persist;
15
16 import org.astrogrid.applications.CeaException;
17
18 /***
19 * Indicates a problem with the persistence engine.
20 * @author Paul Harrison (pah@jb.man.ac.uk) 19-Apr-2004
21 * @version $Name: HEAD $
22 * @since iteration5
23 */
24 public class PersistenceException extends CeaException {
25
26 /***
27 * @param message
28 */
29 public PersistenceException(String message) {
30 super(message);
31 }
32
33 /***
34 * @param message
35 * @param cause
36 */
37 public PersistenceException(String message, Throwable cause) {
38 super(message, cause);
39 }
40
41 }