class MidiSmtpServer::Smtpd500PipeliningException

500 Bad input, no PIPELINING

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method MidiSmtpServer::SmtpdException::new
# File lib/midi-smtp-server/exceptions.rb, line 282
def initialize(msg = nil)
  # call inherited constructor
  super msg, 500, 'Bad input, PIPELINING is not allowed'
end