Sha256: b4d23978ffd4217a491014f7f408721926535e69daa52b4fe50541c3c81e59cf
Contents?: true
Size: 317 Bytes
Versions: 14
Compression:
Stored size: 317 Bytes
Contents
# frozen_string_literal: true module Notion module Api module Errors class NotionError < ::Faraday::Error attr_reader :response def initialize(message, details, response = nil) super("#{message} #{details}") @response = response end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems