OperationNotFound constructor

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

Implementation

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