Sha256: 8160bfc6d8e599b71dd0dc0e05546db6886b5f7ba98a91c74bb5e9153fe8d848
Contents?: true
Size: 1 KB
Versions: 1
Compression:
Stored size: 1 KB
Contents
=begin #Mailchimp Transactional API #No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) OpenAPI spec version: 1.0.8 Contact: apihelp@mandrill.com Generated by: https://github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.4.12 =end module MailchimpTransactional class ApiError < StandardError attr_reader :status, :type, :title, :detail, :instance, :errors,: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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
MailchimpTransactional-1.0.8 | lib/MailchimpTransactional/api_error.rb |