NonlinearException constructor

const NonlinearException(
  1. String message
)

Represents an exception from the NonLinear class.

Implementation

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