class MidiSmtpServer::Smtpd534Exception

534 Authentication mechanism is too weak

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method MidiSmtpServer::SmtpdException::new
# 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