Package org.apache.commons.math4.linear
Class NonSquareOperatorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.math4.exception.MathRuntimeException
org.apache.commons.math4.exception.MathIllegalArgumentException
org.apache.commons.math4.exception.MathIllegalNumberException
org.apache.commons.math4.exception.DimensionMismatchException
org.apache.commons.math4.linear.NonSquareOperatorException
- All Implemented Interfaces:
java.io.Serializable,ExceptionContextProvider
public class NonSquareOperatorException extends DimensionMismatchException
Exception to be thrown when a square linear operator is expected.
- Since:
- 3.0
- See Also:
- Serialized Form
-
Field Summary
Fields inherited from class org.apache.commons.math4.exception.MathIllegalNumberException
INTEGER_ZERO -
Constructor Summary
Constructors Constructor Description NonSquareOperatorException(int wrong, int expected)Construct an exception from the mismatched dimensions. -
Method Summary
Methods inherited from class org.apache.commons.math4.exception.DimensionMismatchException
getDimensionMethods inherited from class org.apache.commons.math4.exception.MathIllegalNumberException
getArgumentMethods inherited from class org.apache.commons.math4.exception.MathRuntimeException
getContext, getLocalizedMessage, getMessage
-
Constructor Details
-
NonSquareOperatorException
public NonSquareOperatorException(int wrong, int expected)Construct an exception from the mismatched dimensions.- Parameters:
wrong- Row dimension.expected- Column dimension.
-