Sha256: dc141ceb6a468ffc403153cfef1fa071dd5a357b0d63ace2f41472b51583c32e
Contents?: true
Size: 399 Bytes
Versions: 31
Compression:
Stored size: 399 Bytes
Contents
# -*- ruby -*- # frozen_string_literal: true require 'pg' unless defined?( PG ) module PG class Error < StandardError def initialize(msg=nil, connection: nil, result: nil) @connection = connection @result = result super(msg) end end class NotAllCopyDataRetrieved < PG::Error end class LostCopyState < PG::Error end class NotInBlockingMode < PG::Error end end # module PG
Version data entries
31 entries across 31 versions & 1 rubygems