Exception: Fluffle::Errors::CustomError
- Defined in:
- lib/fluffle/errors.rb
Overview
Raise this within your own code to get an error that will be faithfully translated into the code, message, and data member fields of the spec’s ‘Error` response object
Instance Attribute Summary collapse
-
#code ⇒ Object
Returns the value of attribute code.
-
#data ⇒ Object
Returns the value of attribute data.
Instance Method Summary collapse
-
#initialize(code: 0, message:, data: nil) ⇒ CustomError
constructor
A new instance of CustomError.
Methods inherited from BaseError
Constructor Details
#initialize(code: 0, message:, data: nil) ⇒ CustomError
Returns a new instance of CustomError.
34 35 36 37 38 39 |
# File 'lib/fluffle/errors.rb', line 34 def initialize(code: 0, message:, data: nil) @code = code @data = data super end |
Instance Attribute Details
#code ⇒ Object
Returns the value of attribute code.
32 33 34 |
# File 'lib/fluffle/errors.rb', line 32 def code @code end |
#data ⇒ Object
Returns the value of attribute data.
32 33 34 |
# File 'lib/fluffle/errors.rb', line 32 def data @data end |