1
2
3
4
5
6
7
8
9
10
11 package org.astrogrid.jes.job;
12
13
14 /***
15 * The <code>JobNotFoundException</code> class represents
16 * the case where a select made against the Job database
17 * retrieved zero Job occurances.
18 * <p>
19 *
20 *
21 * @author Jeff Lusted
22 * @version 1.0 03-Jun-2003
23 * @see org.astrogrid.jes.job.JobException
24 * @since AstroGrid 1.2
25 */
26 public class NotFoundException extends JobException {
27
28 /***
29 *
30 *
31 *
32 */
33 public NotFoundException( String message ) {
34 super(message);
35 }
36
37
38 /***
39 *
40 *
41 *
42 */
43 public NotFoundException( String message, Exception exception ) {
44 super(message, exception);
45 }
46
47
48 }