gpsys
Class MissingEvaluatorException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--gpsys.GPException
                    |
                    +--gpsys.EvaluationException
                          |
                          +--gpsys.MissingEvaluatorException

public class MissingEvaluatorException
extends EvaluationException

An MissingEvaluatorException is generated when an evaluate method of the class Function or Terminal has been invoked. The classes Function and Terminal are abstract and hence should never have their evaluation methods called. This can happen if evaluation method being invoked has not been definde in a Function or Terminal subclass.

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:
EvaluationException, Terminal, Function, Serialized Form

Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
MissingEvaluatorException()
          Create an MissingEvaluatorException with an empty message.
MissingEvaluatorException(java.lang.String message)
          Create an MissingEvaluatorException 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

MissingEvaluatorException

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

MissingEvaluatorException

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