MiddlewareNotFoundException constructor

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

Implementation

MiddlewareNotFoundException(super.message, {super.details})
  : super(
      statusCode: 500,
      title: 'Middleware Not Found',
      type: 'middleware_not_found',
    );