class Salesforce::Rest::AsfRequestRefusedError

Error for HTTP code 403, Request cannot be understood, because the JSON or XML body has an error

Public Class Methods

new(message, http_code) click to toggle source
Calls superclass method Salesforce::Rest::AsfRestError::new
# File lib/Salesforce/rest/asf_rest_error.rb, line 80
def initialize(message, http_code)
  super(message, http_code)
end