class NgrokAPI::Errors::NotFoundError

Error representing a 404 not found

Attributes

response[R]

Public Class Methods

new(msg: "Resource not found", response: nil) click to toggle source
Calls superclass method NgrokAPI::Error::new
# File lib/ngrokapi/errors/not_found_error.rb, line 10
def initialize(msg: "Resource not found", response: nil)
  @response = response
  super(msg: msg, response: response)
end