11 lines
186 B
Ruby
11 lines
186 B
Ruby
|
require "vagrant"
|
||
|
|
||
|
module VagrantPlugins
|
||
|
module Salt
|
||
|
module Errors
|
||
|
class SaltError < Vagrant::Errors::VagrantError
|
||
|
error_namespace("salt")
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|