Package jahuwaldt.tools.math
Class RootException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- jahuwaldt.tools.math.RootException
-
- All Implemented Interfaces:
java.io.Serializable
public class RootException extends java.lang.Exception
Root finding routines may throw this exception when an error occurs in the root finding routine.Modified by: Joseph A. Huwaldt
- Version:
- September 16, 2012
- Author:
- Joseph A. Huwaldt Date: October 8, 1997
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RootException(java.lang.String msg)
Constructs a RootException with the specified detail message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
Returns a short description of the RootException.
-
-
-
Constructor Detail
-
RootException
public RootException(java.lang.String msg)
Constructs a RootException with the specified detail message. A detail message is a String that describes this particular exception.- Parameters:
msg
- The String containing a detail message
-
-
Method Detail
-
toString
public java.lang.String toString()
Returns a short description of the RootException.- Overrides:
toString
in classjava.lang.Throwable
- Returns:
- Returns this exceptions message as a string.
-
-