gpsys
Class EvaluationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--gpsys.GPException
                    |
                    +--gpsys.EvaluationException
Direct Known Subclasses:
DivideByZeroException, MissingEvaluatorException

public class EvaluationException
extends GPException

The root of all evaluation exceptions. This class should be subclassed to create exceptions that can be generated by functions por terminals during evalution.

Version:
$Revision: 1.1 $, $Date: 2000/07/05 16:21:25 $
Author:
Adil Qureshi
Department of Computer Science,
University College London,
Gower St,
London WC1E 6BT,
UK.
See Also:
DivideByZeroException, MissingEvaluatorException, GPException, Terminal, Function, Serialized Form

Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
EvaluationException()
          Create an EvaluationException with an empty message.
EvaluationException(java.lang.String message)
          Create an EvaluationException with the specified message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, printStackTrace0, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Constructor Detail

EvaluationException

public EvaluationException()
Create an EvaluationException with an empty message.

EvaluationException

public EvaluationException(java.lang.String message)
Create an EvaluationException with the specified message.
Parameters:
message - a message describing the the exception.