class MidiSmtpServer::Smtpd504Exception

504 Command parameter not implemented

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method MidiSmtpServer::SmtpdException::new
# File lib/midi-smtp-server/exceptions.rb, line 135
def initialize(msg = nil)
  # call inherited constructor
  super msg, 504, 'Command parameter not implemented'
end