AccountNotFoundException constructor

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

Implementation

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