View Javadoc

1   /*
2    * @(#)MySubsystemException.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.templateservice ;
12  
13  import org.astrogrid.i18n.AstroGridMessage;
14  
15  
16  public class MySubsystemException extends org.astrogrid.AstroGridException {
17  	
18  	public MySubsystemException( AstroGridMessage message ) { 
19  		super( message ) ;
20  	}
21  
22  	public MySubsystemException( AstroGridMessage message, Exception exception ) {
23  		super( message, exception ) ;
24  	}
25      
26  }