Exception: MidiSmtpServer::Smtpd452Exception

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

Overview

452 Requested action not taken: insufficient system storage

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

Returns a new instance of Smtpd452Exception.



84
85
86
87
# File 'lib/midi-smtp-server/exceptions.rb', line 84

def initialize(msg = nil)
  # call inherited constructor
  super msg, 452, 'Requested action not taken: insufficient system storage'
end