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