ConfigurationException constructor

const ConfigurationException({
  1. String? message,
  2. String? stackTrace,
})

Constructs and instance of ConfigurationException

Implementation

const ConfigurationException({
  super.message,
  super.stackTrace,
}) : super(
        code: 'configuration-exception',
      );