class MidiSmtpServer::Smtpd552Exception

552 Requested mail action aborted: exceeded storage allocation

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method MidiSmtpServer::SmtpdException::new
# 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