class AgileCRMWrapper::BadRequest

Raised when AgileCRMWrapper returns a 400 HTTP status code

Public Class Methods

new(response, message = 'The request was formatted incorrectly') click to toggle source
Calls superclass method AgileCRMWrapper::Error::new
# File lib/agilecrm-wrapper/error.rb, line 33
def initialize(response, message = 'The request was formatted incorrectly')
  super(response, message)
end