SystemSolverException constructor

const SystemSolverException(
  1. String message
)

Represents an error for the SystemSolver class.

Implementation

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