Skip to content

Commit db9dcf0

Browse files
committed
fix(core): Update Error
1 parent dbf802f commit db9dcf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

geekorm-core/src/error.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ pub enum Error {
1616
ColumnSkipped,
1717

1818
/// No Rows was found in the database for the query
19-
#[error("No Rows Found in the database for the query")]
20-
NoRowsFound,
19+
#[error("No Rows Found - Query: '{0}'")]
20+
NoRowsFound(String),
2121

2222
/// Not Implemented
2323
#[error("Not Implemented")]

0 commit comments

Comments
 (0)