View Javadoc

1   /*
2    * @(#)DuplicateFoundException.java   1.0
3    *
4    * Copyright (C) AstroGrid. All rights reserved.
5    *
6    * This software is published under the terms of the AstroGrid 
7    * Software License version 1.2, a copy of which has been included 
8    * with this distribution in the LICENSE.txt file.  
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  }