View Javadoc

1   /*
2    * $Id$
3    * 
4    * Created on 1 Feb 2010 by Paul Harrison (paul.harrison@manchester.ac.uk)
5    * Copyright 2010 Paul Harrison. All rights reserved.
6    *
7    * This software is published under the terms of the
8    * software license which has been included 
9    * with this distribution in the LICENSE.txt file.  
10   *
11   */ 
12  
13  package org.jastronomy.jsofa;
14  /**
15   * Exception signalling a internal error.
16   *  .
17   * @author Paul Harrison (paul.harrison@manchester.ac.uk) 21 Nov 2011
18   * @version $Revision$ $date$
19   */
20  public class JSOFAInternalError extends JSOFAException {
21  
22      /** Comment for <code>serialVersionUID</code>
23       */
24      private static final long serialVersionUID = 6067803703985219165L;
25  
26      public JSOFAInternalError(String message, int status) {
27          super(message, status);
28      }
29  
30  }
31  
32  
33  /*
34   * $Log$
35   */