class MidiSmtpServer::Tls530Exception

530 Encryption required

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method MidiSmtpServer::SmtpdException::new
# File lib/midi-smtp-server/exceptions.rb, line 270
def initialize(msg = nil)
  # call inherited constructor
  super msg, 530, 'Encryption required, must issue STARTTLS command first'
end