Package net.algart.arrays
Class NotSubMatrixException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.algart.arrays.NotSubMatrixException
- All Implemented Interfaces:
Serializable
Unchecked exception thrown by some methods of Matrix interface,
if the matrix is not a submatrix of another matrix.
For example, this exception is thrown for matrices, which are not submatrices of another ones, by
Matrix.subMatrixParent(), Matrix.subMatrixFrom(),
Matrix.subMatrixTo() or Matrix.subMatrixContinuationMode() methods.
- Author:
- Daniel Alievsky
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an instance of this class.NotSubMatrixException(String message) Constructs an instance of this class with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotSubMatrixException
public NotSubMatrixException()Constructs an instance of this class. -
NotSubMatrixException
Constructs an instance of this class with the specified detail message.- Parameters:
message- the detail message.
-