From b9df78e4494879752e9e68dcc5d54e03fffe9467 Mon Sep 17 00:00:00 2001 From: fiaxh Date: Sat, 28 Oct 2017 23:48:07 +0200 Subject: Move DatabaseError handling into Qlite --- qlite/src/row.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'qlite/src/row.vala') diff --git a/qlite/src/row.vala b/qlite/src/row.vala index 8854656f..be459719 100644 --- a/qlite/src/row.vala +++ b/qlite/src/row.vala @@ -56,12 +56,12 @@ public class RowIterator { private Database db; private Statement stmt; - public RowIterator.from_query_builder(Database db, QueryBuilder query) throws DatabaseError { + public RowIterator.from_query_builder(Database db, QueryBuilder query) { this.db = db; this.stmt = query.prepare(); } - public RowIterator(Database db, string sql, string[]? args = null) throws DatabaseError { + public RowIterator(Database db, string sql, string[]? args = null) { this.db = db; this.stmt = db.prepare(sql); if (args != null) { @@ -111,4 +111,4 @@ public class RowOption { } } -} \ No newline at end of file +} -- cgit v1.2.3-54-g00ecf