ConfigException constructor

ConfigException(
  1. String message, {
  2. dynamic details,
})

Implementation

ConfigException(
  super.message, {
  super.details,
}) : super(
        statusCode: 500,
        title: 'Configuration Error',
        type: 'config_error',
      );