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