class SyncwiseApi::Errors::SyncwiseApi::Errors::InvalidContentType

Attributes

header[R]
request[R]
resp[R]

Public Class Methods

new(resp, request, header) click to toggle source
Calls superclass method
# File lib/syncwise_api/errors.rb, line 70
def initialize(resp, request, header)
  @resp = resp
  @request = request
  @header = header
  super("Api call returned an invalid Content-Type. Response: #{@resp}, request: #{@request}, header: #{@header}")
end