class AgileCRMWrapper::NotFound

Raised when AgileCRMWrapper returns a 404 HTTP status code

Public Class Methods

new(response, message = 'Resource not found') click to toggle source
Calls superclass method AgileCRMWrapper::Error::new
# File lib/agilecrm-wrapper/error.rb, line 47
def initialize(response, message = 'Resource not found')
  super(response, message)
end