PopException.message constructor

PopException.message(
  1. PopClient popClient,
  2. String message
)

Creates a new POP exception with the given message

Implementation

PopException.message(this.popClient, String message)
    : response = PopResponse<String>(isOkStatus: false, result: message),
      stackTrace = null,
      _message = message;