better error messages

This commit is contained in:
Adam D. Ruppe 2023-11-22 18:53:13 -05:00
parent 80fc3bc787
commit bac154b557
1 changed files with 2 additions and 1 deletions

View File

@ -119,8 +119,9 @@ import std.stdio;
// Added Oct 26, 2021
Row queryOneRow(string file = __FILE__, size_t line = __LINE__, T...)(Database db, string sql, T t) {
auto res = db.query(sql, t);
import arsd.core;
if(res.empty)
throw new Exception("no row in result", file, line);
throw ArsdException!("no row in result")(sql, t, file, line);
auto row = res.front;
return row;
}