class MidiSmtpServer::Smtpd550Exception
550 Requested action not taken: mailbox unavailable
e.g. mailbox not found, no access
Public Class Methods
new(msg = nil)
click to toggle source
Calls superclass method
MidiSmtpServer::SmtpdException::new
# File lib/midi-smtp-server/exceptions.rb, line 156 def initialize(msg = nil) # call inherited constructor super msg, 550, 'Requested action not taken: mailbox unavailable' end