Class: Net::IMAP::SASL::AuthenticationIncomplete
- Inherits:
-
AuthenticationFailed
- Object
- Net::IMAP::SASL::AuthenticationIncomplete
- Defined in:
- lib/net/imap/sasl.rb
Overview
Indicates that authentication cannot proceed because one of the server’s ended authentication prematurely.
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
The success response from the server.
Instance Method Summary collapse
-
#initialize(response, message = "authentication ended prematurely") ⇒ AuthenticationIncomplete
constructor
A new instance of AuthenticationIncomplete.
Constructor Details
#initialize(response, message = "authentication ended prematurely") ⇒ AuthenticationIncomplete
Returns a new instance of AuthenticationIncomplete.
123 124 125 126 |
# File 'lib/net/imap/sasl.rb', line 123 def initialize(response, = "authentication ended prematurely") super() @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
The success response from the server
121 122 123 |
# File 'lib/net/imap/sasl.rb', line 121 def response @response end |