class Net::IMAP::ResponseError

用于封装来自服务器的 “fail” 响应的所有错误的超类。

属性

response[RW]

导致此错误的响应

公共类方法

new(response) 点击以切换源代码
调用父类方法
# File net-imap-0.5.4/lib/net/imap/errors.rb, line 31
def initialize(response)
  @response = response

  super @response.data.text
end