View Javadoc

1   /*
2    * @(#)NotFoundException.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>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  } // end of class JobNotFoundException