Sha256: bc5cfb47e6ce61e544a11baafb708f7c7151617f299905d5ad6b12a200355aa9

Contents?: true

Size: 897 Bytes

Versions: 4

Compression:

Stored size: 897 Bytes

Contents

=begin
#ARTIK Cloud API

#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)

OpenAPI spec version: 2.0.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

=end

module ArtikCloud
  class ApiError < StandardError
    attr_reader :code, :response_headers, :response_body

    # Usage examples:
    #   ApiError.new
    #   ApiError.new("message")
    #   ApiError.new(:code => 500, :response_headers => {}, :response_body => "")
    #   ApiError.new(:code => 404, :message => "Not Found")
    def initialize(arg = nil)
      if arg.is_a? Hash
        if arg.key?(:message) || arg.key?('message')
          super(arg[:message] || arg['message'])
        else
          super arg
        end

        arg.each do |k, v|
          instance_variable_set "@#{k}", v
        end
      else
        super arg
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
artikcloud-2.2.3 lib/artikcloud/api_error.rb
artikcloud-2.2.2 lib/artikcloud/api_error.rb
artikcloud-2.1.1 lib/artikcloud/api_error.rb
artikcloud-2.1.0 lib/artikcloud/api_error.rb