ServiceNotFoundException constructor

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

Implementation

ServiceNotFoundException(
  super.message, {
  super.details,
}) : super(
        statusCode: 500,
        title: 'Service Not Found',
        type: 'service_not_found',
      );