shard-crystal-sqlite3/src/sqlite3/exception.cr

11 lines
266 B
Crystal
Raw Permalink Normal View History

2015-03-13 00:08:01 +00:00
# Exception thrown on invalid SQLite3 operations.
2015-03-12 21:21:33 +00:00
class SQLite3::Exception < ::Exception
2015-03-13 00:08:01 +00:00
# The internal code associated with the failure.
2015-03-12 21:21:33 +00:00
getter code
def initialize(db)
super(String.new(LibSQLite3.errmsg(db)))
@code = LibSQLite3.errcode(db)
end
end