Package hlcd.exceptions
Class InvalidIdentityRowIndexException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
hlcd.exceptions.InvalidIdentityRowIndexException
- All Implemented Interfaces:
Serializable
An exception that can be thrown when an invalid row index is specified in the
identity submatrix of the generator matrix \(G\).
- Since:
- 1.8
- Version:
- 1.0 (January 28th, 2022)
- Author:
- Maysara Al Jumaily
- See Also:
VectorGenerator, Serialized Form
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidIdentityRowIndexException(byte identityRowIndex, byte k, byte base)Constructs a new runtime exception when an invalid row index is specified in the identity submatrix of the generator matrix \(G\). -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidIdentityRowIndexException
public InvalidIdentityRowIndexException(byte identityRowIndex, byte k, byte base)Constructs a new runtime exception when an invalid row index is specified in the identity submatrix of the generator matrix \(G\).- Parameters:
identityRowIndex- the invalid row index of the identity matrixk- the dimension of the codebase- the base of the code
-