Class: VagrantPlugins::VCloud::Action::MessageCannotSuspend
- Inherits:
-
Object
- Object
- VagrantPlugins::VCloud::Action::MessageCannotSuspend
- Defined in:
- lib/vagrant-vcloud/action/message_cannot_suspend.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ MessageCannotSuspend
constructor
A new instance of MessageCannotSuspend.
Constructor Details
#initialize(app, env) ⇒ MessageCannotSuspend
Returns a new instance of MessageCannotSuspend.
5 6 7 |
# File 'lib/vagrant-vcloud/action/message_cannot_suspend.rb', line 5 def initialize(app, env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
9 10 11 12 13 |
# File 'lib/vagrant-vcloud/action/message_cannot_suspend.rb', line 9 def call(env) # FIXME: This error should be categorized env[:ui].info(I18n.t('vagrant_vcloud.vm_halted_cannot_suspend')) @app.call(env) end |