HandleNotificationException constructor
HandleNotificationException([
- String? message
Implementation
HandleNotificationException([String? message]) {
if (message != null) {
this._message =
'Error processing Push Authentication request:\n $message';
} else {
this._message = 'Error processing Push Authentication request.';
}
}