View Javadoc

1   /*
2    * @(#)JesException.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;
12  
13  
14  /*** base exception type for the Job Execution System */
15  public class JesException extends Exception {
16  
17      public JesException(String s) {
18          super(s);
19      }
20      
21      public JesException(String s,Throwable e) {
22          super(s,e);
23      }
24      
25  }