Class: Startback::Operation::ErrorOperation
- Inherits:
-
Operation
- Object
- Operation
- Startback::Operation::ErrorOperation
- Defined in:
- lib/startback/operation/error_operation.rb
Instance Attribute Summary collapse
-
#details ⇒ Object
readonly
Returns the value of attribute details.
Instance Method Summary collapse
- #bind(world) ⇒ Object
- #call ⇒ Object
-
#initialize(details) ⇒ ErrorOperation
constructor
A new instance of ErrorOperation.
Constructor Details
#initialize(details) ⇒ ErrorOperation
Returns a new instance of ErrorOperation.
5 6 7 |
# File 'lib/startback/operation/error_operation.rb', line 5 def initialize(details) @details = details end |
Instance Attribute Details
#details ⇒ Object (readonly)
Returns the value of attribute details.
8 9 10 |
# File 'lib/startback/operation/error_operation.rb', line 8 def details @details end |
Instance Method Details
#bind(world) ⇒ Object
13 14 15 |
# File 'lib/startback/operation/error_operation.rb', line 13 def bind(world) self end |
#call ⇒ Object
10 11 |
# File 'lib/startback/operation/error_operation.rb', line 10 def call end |