Package net.algart.arrays
Class NotTiledMatrixException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.algart.arrays.NotTiledMatrixException
- All Implemented Interfaces:
Serializable
Unchecked exception thrown by some methods of Matrix
interface,
if the matrix is not tiled
.
For example, this exception is thrown for non-tiled matrices by
Matrix.tileParent()
and Matrix.tileDimensions()
methods.
- Author:
- Daniel Alievsky
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an instance of this class.NotTiledMatrixException
(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
-
NotTiledMatrixException
public NotTiledMatrixException()Constructs an instance of this class. -
NotTiledMatrixException
Constructs an instance of this class with the specified detail message.- Parameters:
message
- the detail message.
-