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