Sha256: 3cf298dda36dd078a551ceb34acb3f5c0e91492ba3ad7299638afc123f971248
Contents?: true
Size: 1.84 KB
Versions: 2
Compression:
Stored size: 1.84 KB
Contents
# # Author:: Alessio Rocchi (<alessio.rocchi@staff.aruba.it>) # © Copyright ArubaCloud. # # LICENSE: MIT (http://opensource.org/licenses/MIT) # module Fog module ArubaCloud module Errors class Error < Fog::Errors::Error attr_accessor :type, :error_point def initialize(message, type='n/a', error_point=nil) @type = type @error_point = error_point super(message) end end class BadObjectType < Error def initialize(message='BadObjectType', expected=nil, received=nil) @expected = expected @received = received super(message) end end # This class will contains the response object in order to access the ResultCode easily. class RequestError < Fog::Errors::Error attr_accessor :type, :error_point, :response def initialize(message, response=nil, type='n/a', error_point=nil) @type = type @error_point = error_point @response = response super(message) end end class NotFound < Error end class BadParameters < Error end class VmStatus < Error end class BadDiskSize < Error end class BadDiskNumber < Error end class InvalidParameterValue < Error end class InvalidStateException < ::RuntimeError attr_reader :desired_state attr_reader :current_state def initialize(desired_state, current_state) @desired_state = desired_state @current_state = current_state end end class InvalidServerStateException < InvalidStateException def to_s "Server should have transitioned to '#{desired_state}' not '#{current_state}'" end end class RequestTimeOut < Error end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-arubacloud-0.0.6 | lib/fog/arubacloud/error.rb |
fog-arubacloud-0.0.5 | lib/fog/arubacloud/error.rb |