Exception: HookSniff::NotFoundError

Inherits:
ApiError
  • Object
show all
Defined in:
lib/hooksniff/errors.rb

Overview

404 Not Found

Instance Attribute Summary

Attributes inherited from ApiError

#code, #response_body, #response_headers

Instance Method Summary collapse

Methods inherited from ApiError

#message, #to_s

Constructor Details

#initialize(response_headers: {}, response_body: nil) ⇒ NotFoundError

Returns a new instance of NotFoundError.



39
40
41
# File 'lib/hooksniff/errors.rb', line 39

def initialize(response_headers: {}, response_body: nil)
  super(code: 404, response_headers: response_headers, response_body: response_body)
end