class MidiSmtpServer::Smtpd502Exception

502 Command 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 115
def initialize(msg = nil)
  # call inherited constructor
  super msg, 502, 'Command not implemented'
end