Fullscreen/yt-support

View on GitHub
lib/yt/http_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Yt
  # A wrapper around StandardError.
  class HTTPError < StandardError
    attr_reader :response

    def initialize(msg, response:)
      super msg
      @response = response
    end
  end
end