Exception: MidiSmtpServer::Smtpd451Exception

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

Overview

451 Requested action aborted: local error in processing

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

Returns a new instance of Smtpd451Exception.



74
75
76
77
# File 'lib/midi-smtp-server/exceptions.rb', line 74

def initialize(msg = nil)
  # call inherited constructor
  super msg, 451, 'Requested action aborted: local error in processing'
end