Sha256: 5907728f32a0e74c036d620ee35bb706b0a7e2ad6bf5f8561ac8dd6b2b998168

Contents?: true

Size: 586 Bytes

Versions: 2

Compression:

Stored size: 586 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module PluginBundler
    module Errors
      class VagrantPluginBundlerError < Vagrant::Errors::VagrantError
        error_namespace("vagrant_plugin_bundler.errors")
      end

      class PluginNotFoundError < VagrantPluginBundlerError
        error_key(:plugin_not_found)
      end

      class DuplicatePluginDefinitionError < VagrantPluginBundlerError
        error_key(:duplicate_plugin_definition)
      end

      class PluginVersionError < VagrantPluginBundlerError
        error_key(:plugin_version_error)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-plugin-bundler-0.1.1 lib/vagrant-plugin-bundler/errors.rb
vagrant-plugin-bundler-0.1.0 lib/vagrant-plugin-bundler/errors.rb