Sha256: 83e3ae807131baae2cbb27256dada6ae389b7764bafd873ab69aefa265afddee
Contents?: true
Size: 248 Bytes
Versions: 5
Compression:
Stored size: 248 Bytes
Contents
# frozen_string_literal: true module Whats module Errors class RequestError < StandardError attr_reader :response def initialize(message, response) super message @response = response end end end end
Version data entries
5 entries across 5 versions & 1 rubygems