Class DBI::DatabaseError
In: lib/dbi/exceptions.rb
Parent: Error

Exception for errors related to the database.

Methods

new  

Attributes

err  [R] 
errstr  [R] 
state  [R] 

Public Class methods

[Source]

    # File lib/dbi/exceptions.rb, line 26
26:         def initialize(errstr="", err=nil, state=nil)
27:             super(errstr)
28:             @err, @errstr, @state = err, errstr, state
29:         end

[Validate]