MatrixException constructor

const MatrixException(
  1. String message
)

Represents an exception from the Matrix class.

Implementation

const MatrixException(String message)
    : super(
        message: message,
        messagePrefix: 'MatrixException',
      );