Exception: Core::Boundary::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Core::Boundary::Error
- Defined in:
- lib/core/boundary/error.rb
Overview
- public
Instance Attribute Summary collapse
-
#result ⇒ Object
readonly
Returns the value of attribute result.
Instance Method Summary collapse
-
#initialize(message = nil, result:) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(message = nil, result:) ⇒ Error
Returns a new instance of Error.
8 9 10 11 12 |
# File 'lib/core/boundary/error.rb', line 8 def initialize( = nil, result:) super() @result = result end |
Instance Attribute Details
#result ⇒ Object (readonly)
Returns the value of attribute result.
14 15 16 |
# File 'lib/core/boundary/error.rb', line 14 def result @result end |