Class MismatchedMatrixSizeException
Object
Throwable
Exception
RuntimeException
IllegalArgumentException
MismatchedDimensionException
MismatchedMatrixSizeException
- All Implemented Interfaces:
- Serializable
Thrown when two matrices cannot be added or multiplied because the sizes do not match.
 
Note:
 This exception extends 
MismatchedDimensionException because the matrices in this package
 are used in Coordinate Operation Steps, in which case a mismatched matrix size means
 that the operation involves two Coordinate Reference Systems of incompatible dimensions.- Since:
- 0.4
- See Also:
Defined in the sis-referencing module
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a new exception with no message.MismatchedMatrixSizeException(String message) Constructs a new exception with the specified detail message.MismatchedMatrixSizeException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.
- 
Method SummaryMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
MismatchedMatrixSizeExceptionpublic MismatchedMatrixSizeException()Constructs a new exception with no message.
- 
MismatchedMatrixSizeExceptionConstructs a new exception with the specified detail message.- Parameters:
- message- the detail message, or- nullif none.
 
- 
MismatchedMatrixSizeExceptionConstructs a new exception with the specified detail message and cause.- Parameters:
- message- the detail message, or- nullif none.
- cause- the cause, or- nullif none.
 
 
-