MailException.fromPop constructor
MailException.fromPop(
- MailClient mailClient,
- PopException e, [
- StackTrace? s
Creates a new exception from the low level one
Implementation
MailException.fromPop(MailClient mailClient, PopException e, [StackTrace? s])
: this(
mailClient,
'${e.popClient.logName}: ${e.message}',
stackTrace: s ?? e.stackTrace,
details: e.response,
);