mirror of
https://github.com/ngrok/ngrok-api-ruby.git
synced 2026-05-17 16:50:40 +00:00
17 lines
339 B
Ruby
17 lines
339 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Code generated for API Clients. DO NOT EDIT.
|
|
|
|
module NgrokAPI
|
|
##
|
|
# Base Error class for all Ngrok Errors
|
|
class Error < StandardError
|
|
attr_reader :response
|
|
|
|
def initialize(msg: "An error occurred with the NgrokAPI", response: nil)
|
|
@response = response
|
|
super(msg)
|
|
end
|
|
end
|
|
end
|