ExpressionParserException constructor

const ExpressionParserException(
  1. String message
)

Represents an error for the ExpressionParser class.

Implementation

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