Methods
Public Class methods
The numeric error code that this exception represents.
[ show source ]
# File lib/sqlite3/errors.rb, line 9
9: def self.code
10: @code
11: end
Public Instance methods
A convenience for accessing the error code for this exception.
[ show source ]
# File lib/sqlite3/errors.rb, line 14
14: def code
15: self.class.code
16: end