class MidiSmtpServer::Smtpd421Exception

421 <domain> Service not available, closing transmission channel

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method MidiSmtpServer::SmtpdException::new
# File lib/midi-smtp-server/exceptions.rb, line 53
def initialize(msg = nil)
  # call inherited constructor
  super msg, 421, 'Service too busy or not available, closing transmission channel'
end