Exception: MidiSmtpServer::Smtpd534Exception

Inherits:
SmtpdException
  • Object
show all
Defined in:
lib/midi-smtp-server/exceptions.rb

Overview

534 Authentication mechanism is too weak

Instance Attribute Summary

Attributes inherited from SmtpdException

#smtpd_return_code, #smtpd_return_text

Instance Method Summary collapse

Methods inherited from SmtpdException

#smtpd_result

Constructor Details

#initialize(msg = nil) ⇒ Smtpd534Exception

Returns a new instance of Smtpd534Exception.



228
229
230
231
# File 'lib/midi-smtp-server/exceptions.rb', line 228

def initialize(msg = nil)
  # call inherited constructor
  super msg, 534, 'Authentication mechanism is too weak'
end