Exception: ShopifyApp::BillingError
- Inherits:
-
StandardError
- Object
- StandardError
- ShopifyApp::BillingError
- Defined in:
- lib/shopify_app/errors.rb
Instance Attribute Summary collapse
-
#errors ⇒ Object
Returns the value of attribute errors.
-
#message ⇒ Object
Returns the value of attribute message.
Instance Method Summary collapse
-
#initialize(message, errors) ⇒ BillingError
constructor
A new instance of BillingError.
Constructor Details
#initialize(message, errors) ⇒ BillingError
Returns a new instance of BillingError.
8 9 10 11 12 |
# File 'lib/shopify_app/errors.rb', line 8 def initialize(, errors) super() @message = @errors = errors end |
Instance Attribute Details
#errors ⇒ Object
Returns the value of attribute errors.
6 7 8 |
# File 'lib/shopify_app/errors.rb', line 6 def errors @errors end |
#message ⇒ Object
Returns the value of attribute message.
5 6 7 |
# File 'lib/shopify_app/errors.rb', line 5 def @message end |