Exception: MidiSmtpServer::Smtpd552Exception

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

Overview

552 Requested mail action aborted: exceeded storage allocation

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

Returns a new instance of Smtpd552Exception.



166
167
168
169
# File 'lib/midi-smtp-server/exceptions.rb', line 166

def initialize(msg = nil)
  # call inherited constructor
  super msg, 552, 'Requested mail action aborted: exceeded storage allocation'
end