Exception: Celluloid::SMTP::Error450

Inherits:
Exception
  • Object
show all
Defined in:
lib/celluloid/smtp/connection/errors.rb

Instance Attribute Summary

Attributes inherited from Exception

#code, #text

Instance Method Summary collapse

Methods inherited from Exception

#result

Constructor Details

#initialize(msg = "") ⇒ Error450

Returns a new instance of Error450.



21
22
23
# File 'lib/celluloid/smtp/connection/errors.rb', line 21

def initialize(msg="")
  super msg, 450, "Requested mail action not taken: mailbox unavailable"
end