frink.errors
Class FrinkException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by frink.errors.FrinkException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
FrinkConversionException, FrinkEvaluationException

public abstract class FrinkException
extends java.lang.Exception

This is an abstract base class that is the superclass for all exceptions thrown from Frink.

Author:
Alan Eliasen, eliasen@mindspring.com
See Also:
Serialized Form

Constructor Summary
FrinkException(java.lang.String message)
          Construct a FrinkException with the specified message.
 
Method Summary
 java.lang.String toString()
          Dumps information about the exception to a human-readable string.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FrinkException

public FrinkException(java.lang.String message)
Construct a FrinkException with the specified message.

Method Detail

toString

public java.lang.String toString()
Dumps information about the exception to a human-readable string. Derived classes will want to add more information to this.

Overrides:
toString in class java.lang.Throwable