Exception: MidiSmtpServer::Smtpd550Exception

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

Overview

550 Requested action not taken: mailbox unavailable

e.g. mailbox not found, no access

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) ⇒ Smtpd550Exception

Returns a new instance of Smtpd550Exception.



156
157
158
159
# 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