class DBI::DatabaseError
Exception for errors related to the database.
Attributes
err[R]
errstr[R]
state[R]
Public Class Methods
new(errstr="", err=nil, state=nil)
click to toggle source
Calls superclass method
# File lib/dbi/exceptions.rb, line 26 def initialize(errstr="", err=nil, state=nil) super(errstr) @err, @errstr, @state = err, errstr, state end