class MidiSmtpServer::Smtpd535Exception

535 Authentication credentials invalid

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method MidiSmtpServer::SmtpdException::new
# File lib/midi-smtp-server/exceptions.rb, line 238
def initialize(msg = nil)
  # call inherited constructor
  super msg, 535, 'Authentication credentials invalid'
end