Class NotSubMatrixException

All Implemented Interfaces:
Serializable

public class NotSubMatrixException extends RuntimeException

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 Details

    • NotSubMatrixException

      public NotSubMatrixException()
      Constructs an instance of this class.
    • NotSubMatrixException

      public NotSubMatrixException(String message)
      Constructs an instance of this class with the specified detail message.
      Parameters:
      message - the detail message.