Evaluating Software Design Patterns
— the "Gang of Four" patterns implemented in Java 6

dk.rode.thesis.interpreter
Class ExpressionException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by dk.rode.thesis.interpreter.ExpressionException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
BreakExpression.BreakException

public class ExpressionException
extends Exception

An expression exception is thrown in case of context, evaluation, or expression errors.

Author:
Gunni Rode / rode.dk
See Also:
Serialized Form

Field Summary
(package private) static long serialVersionUID
          Serial version id.
 
Constructor Summary
ExpressionException()
          No-arg constructor.
ExpressionException(Expression<?> expression)
          Constructor.
ExpressionException(String message)
          Constructor.
ExpressionException(Throwable cause)
          Constructor.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

static final long serialVersionUID
Serial version id.

See Also:
Constant Field Values
Constructor Detail

ExpressionException

public ExpressionException()
No-arg constructor.


ExpressionException

public ExpressionException(Expression<?> expression)
Constructor.

Parameters:
expression - The faulting expression; can be null.

ExpressionException

public ExpressionException(String message)
Constructor.

Parameters:
message - The detail message; can be null.

ExpressionException

public ExpressionException(Throwable cause)
Constructor.

Parameters:
cause - The causing throwable; can be null.

Gunni Rode / rode.dk

Feel free to use and/or modify the Java 6 source code developed for this thesis AT YOUR OWN RISK, but note that the source code comes WITHOUT ANY — and I do mean WITHOUT ANY — form of warranty WHAT SO EVER!

The original thesis and source code are available at rode.dk/thesis.