class NgrokAPI::Error

Base Error class for all Ngrok Errors

Attributes

response[R]

Public Class Methods

new(msg: "An error occurred with the NgrokAPI", response: nil) click to toggle source
Calls superclass method
# File lib/ngrokapi/error.rb, line 9
def initialize(msg: "An error occurred with the NgrokAPI", response: nil)
  @response = response
  super(msg)
end