Sha256: 3fc3db2ebc0927df8d478493c0694b65db87f55e443306a7e62ad625c97e30ba

Contents?: true

Size: 1.14 KB

Versions: 2

Compression:

Stored size: 1.14 KB

Contents

# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require "vagrant"

module VagrantPlugins
  module Google
    module Errors
      class VagrantGoogleError < Vagrant::Errors::VagrantError
        error_namespace("vagrant_google.errors")
      end

      class ExternalIpError < VagrantGoogleError
        error_key(:external_ip_error)
      end

      class DiskTypeError <VagrantGoogleError
        error_key(:disk_type_error)
      end

      class FogError < VagrantGoogleError
        error_key(:fog_error)
      end

      class RsyncError < VagrantGoogleError
        error_key(:rsync_error)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-google-0.1.5 lib/vagrant-google/errors.rb
vagrant-google-0.1.5.rc1 lib/vagrant-google/errors.rb