2014-10-24 11:24:16 -07:00

14 lines
297 B
Ruby

module VagrantPlugins
module GuestTinyCore
module Errors
class TinyCoreError < Vagrant::Errors::VagrantError
error_namespace("vagrant_tinycore.errors")
end
class NetworkStaticOnly < TinyCoreError
error_key(:network_static_only)
end
end
end
end