method
exception_class
exception_class()
public
Hide source
# File lib/net/smtp.rb, line 1019 def exception_class case @status when /\A4/ then SMTPServerBusy when /\A50/ then SMTPSyntaxError when /\A53/ then SMTPAuthenticationError when /\A5/ then SMTPFatalError else SMTPUnknownError end end