123456789_123456789_123456789_123456789_123456789_

Class: Net::IMAP::SASL::AuthenticationIncomplete

Relationships & Source Files
Inherits: Net::IMAP::SASL::AuthenticationFailed
  • Object
Defined in: lib/net/imap/sasl.rb

Overview

Indicates that authentication cannot proceed because one of the server’s ended authentication prematurely.

Class Method Summary

Instance Attribute Summary

  • #response readonly

    The success response from the server.

Constructor Details

.new(response, message = "authentication ended prematurely") ⇒ AuthenticationIncomplete

[ GitHub ]

  
# File 'lib/net/imap/sasl.rb', line 123

def initialize(response, message = "authentication ended prematurely")
  super(message)
  @response = response
end

Instance Attribute Details

#response (readonly)

The success response from the server

[ GitHub ]

  
# File 'lib/net/imap/sasl.rb', line 121

attr_reader :response