Class: Wakame::Event::ActionFailed
- Inherits:
-
ActionEvent
- Object
- Base
- ActionEvent
- Wakame::Event::ActionFailed
- Defined in:
- lib/wakame/event.rb
Instance Attribute Summary collapse
-
#exception ⇒ Object
readonly
Returns the value of attribute exception.
Attributes inherited from ActionEvent
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(action, e) ⇒ ActionFailed
constructor
A new instance of ActionFailed.
Methods inherited from ActionEvent
Methods inherited from Base
Constructor Details
#initialize(action, e) ⇒ ActionFailed
Returns a new instance of ActionFailed.
225 226 227 228 |
# File 'lib/wakame/event.rb', line 225 def initialize(action, e) super(action) @exception = e end |
Instance Attribute Details
#exception ⇒ Object (readonly)
Returns the value of attribute exception.
224 225 226 |
# File 'lib/wakame/event.rb', line 224 def exception @exception end |