Exception: ActiveCampaign::ErrorProxy
- Inherits:
-
StandardError
- Object
- StandardError
- ActiveCampaign::ErrorProxy
- Defined in:
- lib/active_campaign/errors.rb
Overview
Proxy an exception to allow nil to be passed in
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize(error = nil) ⇒ ErrorProxy
constructor
A new instance of ErrorProxy.
- #message ⇒ Object
Constructor Details
#initialize(error = nil) ⇒ ErrorProxy
Returns a new instance of ErrorProxy.
57 58 59 |
# File 'lib/active_campaign/errors.rb', line 57 def initialize(error = nil) self.error = error end |
Instance Method Details
#message ⇒ Object
61 62 63 |
# File 'lib/active_campaign/errors.rb', line 61 def error ? error. : super end |