Sha256: 266462fa661c8256dd819245c437291bca729f6c972a16d7c0bf6f9cf71268aa
Contents?: true
Size: 889 Bytes
Versions: 2
Compression:
Stored size: 889 Bytes
Contents
=begin #DocRaptor v1 #A native client library for the DocRaptor HTML to PDF/XLS service. OpenAPI spec version: 1.0.0 Generated by: https://github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.2.3 =end module DocRaptor 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
docraptor-1.2.0 | lib/docraptor/api_error.rb |
docraptor-1.2.0beta1 | lib/docraptor/api_error.rb |