Exception: Logux::WithMetaError
- Inherits:
-
StandardError
- Object
- StandardError
- Logux::WithMetaError
- Defined in:
- lib/logux/rack.rb
Instance Attribute Summary collapse
-
#meta ⇒ Object
readonly
Returns the value of attribute meta.
Instance Method Summary collapse
-
#initialize(msg, meta: nil) ⇒ WithMetaError
constructor
A new instance of WithMetaError.
Constructor Details
#initialize(msg, meta: nil) ⇒ WithMetaError
Returns a new instance of WithMetaError.
21 22 23 24 |
# File 'lib/logux/rack.rb', line 21 def initialize(msg, meta: nil) @meta = super(msg) end |
Instance Attribute Details
#meta ⇒ Object (readonly)
Returns the value of attribute meta.
19 20 21 |
# File 'lib/logux/rack.rb', line 19 def @meta end |