Methods
Public Instance methods
check( result, db=nil, msg=nil )
    # File lib/sqlite3/errors.rb, line 59
59:     def check( result, db=nil, msg=nil )
60:       unless result == Constants::ErrorCode::OK
61:         msg = ( msg ? msg + ": " : "" ) + db.errmsg if db
62:         raise(( EXCEPTIONS[result] || SQLite3::Exception ), msg)
63:       end
64:     end