com.rubecula.util
Class BaseException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.rubecula.util.BaseException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
Expression.ExpressionException, Formula.FormulaException, InvalidOperandException, MillException, PresentableException, PresentationException

public class BaseException
extends java.lang.Exception

Provides a common base class for all exception so that these can be easily identified and organized.

Since:
V_0_1
Version:
$Revision: 1.2 $
Author:
Robin Hillyard
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.Exception
 
Constructor Summary
BaseException(java.lang.String s)
          With just the text, initialize the exception.
 
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
 

Constructor Detail

BaseException

public BaseException(java.lang.String s)
With just the text, initialize the exception.

Parameters:
s - the identifying string for this exception.