1 /*
2 * @(#)JesDelegateException.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.delegate ;
12
13 public class JesDelegateException extends java.lang.Exception {
14
15 public JesDelegateException( String message ) {
16 super( message ) ;
17 }
18
19 public JesDelegateException( String message, Throwable exception ) {
20 super( message, exception ) ;
21 }
22
23 public JesDelegateException( Throwable exception ) {
24 super( exception ) ;
25 }
26
27 }