ResourceNotFoundException constructor

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

Implementation

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