hussam.math.operations
Class MathException

java.lang.Object
extended by java.lang.Throwable
extended by java.lang.Exception
extended by hussam.math.operations.MathException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
MathLogicException, MathParserException

public class MathException
extends java.lang.Exception

This is the Mother of all Math and Operation Exception.

Author:
Hussam AlMulhim حسام الملحم
See Also:
Serialized Form

Constructor Summary
MathException(java.lang.String m)
          Construcs a new MathException with a given Description.
MathException(java.lang.String m, java.lang.Throwable t)
          Construcs a new MathException given a description, and a cause.
 
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
 

Constructor Detail

MathException

public MathException(java.lang.String m,
                     java.lang.Throwable t)
Construcs a new MathException given a description, and a cause.

Parameters:
m - the message, or description.
t - the cause of the Exception.

MathException

public MathException(java.lang.String m)
Construcs a new MathException with a given Description.

Parameters:
m - THe message.