From bac154b557c665ac57b78f567a2ed03dedaccb6a Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 22 Nov 2023 18:53:13 -0500 Subject: [PATCH] better error messages --- database.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/database.d b/database.d index 4a8cb4d..bb584ec 100644 --- a/database.d +++ b/database.d @@ -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; }