MVT API

math.exceptions
Class ExcessiveIterationsException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--math.exceptions.ExcessiveIterationsException
All Implemented Interfaces:
java.io.Serializable

public class ExcessiveIterationsException
extends java.lang.Exception

The class ExcessiveIterationsException is used to signal when an iterative scheme fails to converge before performing a prescribed number of iterations. It extends the Exception class.

Since:
JDK1.1
Author:
Eric Wright
See Also:
Serialized Form

Field Summary
 java.awt.geom.Point2D.Double[] pts
           
 
Fields inherited from class java.lang.Exception
 
Constructor Summary
ExcessiveIterationsException()
          Creates a ExcessiveIterationsException with no arguments
ExcessiveIterationsException(java.lang.String reason)
          Creates a ExcessiveIterationsException given one String argument containing a reason describing the Exception cause.
ExcessiveIterationsException(java.lang.String reason, java.awt.geom.Point2D.Double[] pts)
          Creates a ExcessiveIterationsException given one String argument containing a reason describing the Exception cause.
 
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

pts

public java.awt.geom.Point2D.Double[] pts
Constructor Detail

ExcessiveIterationsException

public ExcessiveIterationsException()
Creates a ExcessiveIterationsException with no arguments


ExcessiveIterationsException

public ExcessiveIterationsException(java.lang.String reason)
Creates a ExcessiveIterationsException given one String argument containing a reason describing the Exception cause.


ExcessiveIterationsException

public ExcessiveIterationsException(java.lang.String reason,
                                    java.awt.geom.Point2D.Double[] pts)
Creates a ExcessiveIterationsException given one String argument containing a reason describing the Exception cause.


MVT API

mvt.icons