Exception: SynsbasenApi::Error
- Inherits:
-
StandardError
- Object
- StandardError
- SynsbasenApi::Error
- Defined in:
- lib/synsbasen_api/error.rb
Overview
The Error
module provides custom error classes for handling API errors.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#data ⇒ Hash
Additional data associated with the error.
-
#message ⇒ String
The error message.
-
#status ⇒ String
The HTTP status code associated with the error.
Instance Method Summary collapse
-
#initialize(msg = '', status = '', data = {}) ⇒ Error
constructor
Initializes a new instance of
Error
.
Constructor Details
#initialize(msg = '', status = '', data = {}) ⇒ Error
Initializes a new instance of Error
.
20 21 22 23 24 |
# File 'lib/synsbasen_api/error.rb', line 20 def initialize(msg = '', status = '', data = {}) @message = msg @status = status @data = data end |
Instance Attribute Details
#data ⇒ Hash
Returns Additional data associated with the error.
13 14 15 |
# File 'lib/synsbasen_api/error.rb', line 13 def data @data end |
#message ⇒ String
Returns The error message.
7 8 9 |
# File 'lib/synsbasen_api/error.rb', line 7 def @message end |
#status ⇒ String
Returns The HTTP status code associated with the error.
10 11 12 |
# File 'lib/synsbasen_api/error.rb', line 10 def status @status end |