JEphem Informatic Trail tig source code TigException.java
//*********************************************************************************
// class tig.TigException
// Software released under the General Public License (version 2 or later), available at
// http://www.gnu.org/copyleft/gpl.html
//*********************************************************************************
package tig;

/**********************************************************************************
General Exception thrown by some methods package tig, meaning that an internal error has occured.

@author Thierry Graff
@history oct 07 2001 : Creation
**********************************************************************************/
public class TigException extends Exception{
  public TigException(String message){
    super(message);
  }
}//end class TigException