MVT API

math.exceptions
Class MatrixDimensionException

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

public class MatrixDimensionException
extends java.lang.Exception

The class MatrixDimensionException is used to signal when a matrix operation has cannot happen with the given dimensions of that matrix.

Since:
JDK1.1
Author:
Darin Gillis
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.Exception
 
Constructor Summary
MatrixDimensionException()
          Creates a MatrixDimensionException with no arguments
MatrixDimensionException(java.lang.String reason)
          Creates a MatrixDimensionException 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
 

Constructor Detail

MatrixDimensionException

public MatrixDimensionException()
Creates a MatrixDimensionException with no arguments


MatrixDimensionException

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


MVT API

mvt.icons