org.apache.commons.math3.exception
Class DimensionMismatchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.apache.commons.math3.exception.MathIllegalArgumentException
org.apache.commons.math3.exception.MathIllegalNumberException
org.apache.commons.math3.exception.DimensionMismatchException
- All Implemented Interfaces:
- 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: DimensionMismatchException.java 1364378 2012-07-22 17:42:38Z tn $
- See Also:
- Serialized Form
serialVersionUID
private static final long serialVersionUID
- Serializable version Id.
- See Also:
- Constant Field Values
dimension
private final int dimension
- Correct dimension.
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 (c) 2003-2013 Apache Software Foundation