AlgebraicException constructor

const AlgebraicException(
  1. String message
)

Represents an exception from the Algebraic class.

Implementation

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