Sha256: 28be5127afca2a45ee7ffd5fe03c763a826aa805ab5bb653366da884a1996ed8

Contents?: true

Size: 469 Bytes

Versions: 12

Compression:

Stored size: 469 Bytes

Contents

# frozen_string_literal: true

require_relative 'error_matcher'

module LedgerSync
  module Adaptors
    module QuickBooksOnline
      module Util
        class ErrorParser
          attr_reader :error

          def initialize(error:)
            @error = error
          end

          def error_klass
            raise NotImplementedError
          end

          def parse
            raise NotImplementedError
          end
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
ledger_sync-1.3.4 lib/ledger_sync/adaptors/quickbooks_online/util/error_parser.rb
ledger_sync-1.3.3 lib/ledger_sync/adaptors/quickbooks_online/util/error_parser.rb
ledger_sync-1.3.2 lib/ledger_sync/adaptors/quickbooks_online/util/error_parser.rb
ledger_sync-1.3.1 lib/ledger_sync/adaptors/quickbooks_online/util/error_parser.rb
ledger_sync-1.1.3 lib/ledger_sync/adaptors/quickbooks_online/util/error_parser.rb
ledger_sync-1.1.2 lib/ledger_sync/adaptors/quickbooks_online/util/error_parser.rb
ledger_sync-1.1.1 lib/ledger_sync/adaptors/quickbooks_online/util/error_parser.rb
ledger_sync-1.0.10 lib/ledger_sync/adaptors/quickbooks_online/util/error_parser.rb
ledger_sync-1.0.9 lib/ledger_sync/adaptors/quickbooks_online/util/error_parser.rb
ledger_sync-1.0.3 lib/ledger_sync/adaptors/quickbooks_online/util/error_parser.rb
ledger_sync-1.0.2 lib/ledger_sync/adaptors/quickbooks_online/util/error_parser.rb
ledger_sync-1.0.0 lib/ledger_sync/adaptors/quickbooks_online/util/error_parser.rb