ServiceNotFoundException constructor

ServiceNotFoundException({
  1. String? type,
  2. String? message,
})

Implementation

ServiceNotFoundException({String? type, String? message})
    : super(type: type, code: 'ServiceNotFoundException', message: message);