Sha256: eca9845b9d7e41f18d55757a2f3845bcc0e40bc9f6b56fb2ec3dbda0b13df475
Contents?: true
Size: 370 Bytes
Versions: 3
Compression:
Stored size: 370 Bytes
Contents
module VagrantPlugins module VCloud module Action class MessageCannotSuspend def initialize(app, env) @app = app end def call(env) # FIXME: This error should be categorized env[:ui].info(I18n.t("vagrant_vcloud.vm_halted_cannot_suspend")) @app.call(env) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems