class Yt::HTTPError

A wrapper around StandardError.

Attributes

response[R]

Public Class Methods

new(msg, response:) click to toggle source
Calls superclass method
# File lib/yt/http_error.rb, line 6
def initialize(msg, response:)
  super msg
  @response = response
end