Sha256: 50190e1aef54b71f5fcb55478ce40c6d16dafc2f8a42904a1a7bbfb8af6a0e60
Contents?: true
Size: 423 Bytes
Versions: 4
Compression:
Stored size: 423 Bytes
Contents
# Copyright 2018 Daniel Herzog # Use of this source code is governed by an MIT # license that can be found in the LICENSE.md file. # frozen_string_literal: true module DeepL module Exceptions class RequestError < Error attr_reader :request, :response def initialize(response) super() @response = response end def message 'Unknown error.' end end end end
Version data entries
4 entries across 4 versions & 1 rubygems