Package hlcd.exceptions
Class InvalidColumnDimensionToSetException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
hlcd.exceptions.InvalidColumnDimensionToSetException
- All Implemented Interfaces:
Serializable
An exception that can be thrown when trying to override a specific column
in the matrix with a column vector that doesn't match the matrix's dimension.
- Since:
- 1.8
- Version:
- 1.0 (January 28th, 2022)
- Author:
- Maysara Al Jumaily
- See Also:
Matrix,InvalidColumnVectorDimensionException, Serialized Form
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidColumnDimensionToSetException(byte matrixNumberOfRows, byte columnNumberOfRows)Constructs a new runtime exception when a column matrix that doesn't match the matrix's dimension is specified to override some column in the matrix. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidColumnDimensionToSetException
public InvalidColumnDimensionToSetException(byte matrixNumberOfRows, byte columnNumberOfRows)Constructs a new runtime exception when a column matrix that doesn't match the matrix's dimension is specified to override some column in the matrix.- Parameters:
matrixNumberOfRows- the number of rows in the matrixcolumnNumberOfRows- the number of rows in the column matrix
-