com.ls.util.math
Class FormulaCalculationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.ls.BaseException
                    |
                    +--com.ls.util.math.FormulaCalculationException
All Implemented Interfaces:
Serializable

public class FormulaCalculationException
extends BaseException

FormulaCalculationException is a class which is thrown by FormulaCalculator.

Version:
$Revision: 1.1 $
Author:
Last modified by $Author: MFehrenbach $
See Also:
Serialized Form

Fields inherited from class com.ls.BaseException
innerThrowable
 
Constructor Summary
FormulaCalculationException()
          Creates a FormulaCalculationException with no specified detail message.
FormulaCalculationException(String description)
          Creates a FormulaCalculationException with the specified detail message.
FormulaCalculationException(String description, Throwable throwable)
          Creates a FormulaCalculationException with the specified detail message and nested exception.
 
Methods inherited from class com.ls.BaseException
getMessage, getNestedThrowable, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FormulaCalculationException

public FormulaCalculationException()
Creates a FormulaCalculationException with no specified detail message.

FormulaCalculationException

public FormulaCalculationException(String description)
Creates a FormulaCalculationException with the specified detail message.
Parameters:
description - The detail message.

FormulaCalculationException

public FormulaCalculationException(String description,
                                   Throwable throwable)
Creates a FormulaCalculationException with the specified detail message and nested exception.
Parameters:
description - The detail message.
throwable - The nested exception.