Sha256: 92cb89ec2de5595dceaeeb4a214cc4375918effe36d88a52ca3d506a06895d93

Contents?: true

Size: 270 Bytes

Versions: 30

Compression:

Stored size: 270 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

end # module PG

Version data entries

30 entries across 30 versions & 3 rubygems

Version Path
pg-1.4.3-x86-mingw32 lib/pg/exceptions.rb
pg-1.4.3 lib/pg/exceptions.rb
pg-1.4.2-x64-mingw32 lib/pg/exceptions.rb
pg-1.4.2-x64-mingw-ucrt lib/pg/exceptions.rb
pg-1.4.2-x86-mingw32 lib/pg/exceptions.rb
pg-1.4.2 lib/pg/exceptions.rb
pg-1.4.1-x86-mingw32 lib/pg/exceptions.rb
pg-1.4.1-x64-mingw32 lib/pg/exceptions.rb
pg-1.4.1-x64-mingw-ucrt lib/pg/exceptions.rb
pg-1.4.1 lib/pg/exceptions.rb