org.apache.commons.math.exception
Class DimensionMismatchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.apache.commons.math.exception.MathIllegalArgumentException
org.apache.commons.math.exception.MathIllegalNumberException
org.apache.commons.math.exception.DimensionMismatchException
- All Implemented Interfaces:
- java.io.Serializable, ExceptionContextProvider
- Direct Known Subclasses:
- NonSquareMatrixException, NonSquareOperatorException
public class DimensionMismatchException
- extends MathIllegalNumberException
Exception to be thrown when two dimensions differ.
- Since:
- 2.2
- Version:
- $Id$
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
DimensionMismatchException
public DimensionMismatchException(Localizable specific,
int wrong,
int expected)
- Construct an exception from the mismatched dimensions.
- Parameters:
specific - Specific context information pattern.wrong - Wrong dimension.expected - Expected dimension.
DimensionMismatchException
public DimensionMismatchException(int wrong,
int expected)
- Construct an exception from the mismatched dimensions.
- Parameters:
wrong - Wrong dimension.expected - Expected dimension.
getDimension
public int getDimension()
- Returns:
- the expected dimension.
Copyright © 2003-2011 The Apache Software Foundation. All Rights Reserved.