Sha256: 747b1ead746950cdcdb62656ffba7a730d30f92255e0253e3a6049af3790f50b
Contents?: true
Size: 889 Bytes
Versions: 27
Compression:
Stored size: 889 Bytes
Contents
=begin #Cloudsmith API #The API to the Cloudsmith Service OpenAPI spec version: v1 Contact: support@cloudsmith.io Generated by: https://github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.2.3 =end module CloudsmithApi 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
27 entries across 27 versions & 1 rubygems