2013-03-01 23:45:13 +00:00
|
|
|
module Vagrant
|
|
|
|
module LXC
|
|
|
|
module Errors
|
|
|
|
class ExecuteError < Vagrant::Errors::VagrantError
|
|
|
|
error_key(:lxc_execute_error)
|
|
|
|
end
|
2013-03-08 03:54:15 +00:00
|
|
|
class TemplateFileMissing < Vagrant::Errors::VagrantError
|
|
|
|
error_key(:lxc_template_file_missing)
|
|
|
|
end
|
2013-03-01 23:45:13 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|