Superclass of all errors used to encapsulate “fail” responses from the server.

Methods
N
Attributes
[RW] response

The response that caused this error

Class Public methods
new(response)
# File lib/net/imap.rb, line 3562
def initialize(response)
  @response = response

  super @response.data.text
end