class MidiSmtpServer::Smtpd553Exception

553 Requested action not taken: mailbox name not allowed

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method MidiSmtpServer::SmtpdException::new
# File lib/midi-smtp-server/exceptions.rb, line 176
def initialize(msg = nil)
  # call inherited constructor
  super msg, 553, 'Requested action not taken: mailbox name not allowed'
end