diff options
author | Teddy Wing | 2022-03-13 05:11:35 +0100 |
---|---|---|
committer | Teddy Wing | 2022-03-13 05:11:35 +0100 |
commit | a43344fb70fe3ca041a0e442c5c3862ada8113e7 (patch) | |
tree | 421de5264b7415b1c2e13cec805bb306eac314cf | |
parent | 2acd2e9876bb6450db0f3b3713b975311c0f5322 (diff) | |
download | yaqlite-a43344fb70fe3ca041a0e442c5c3862ada8113e7.tar.bz2 |
yaqlite::Error: Include `rusqlite` error description
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ pub mod yaml; #[derive(thiserror::Error, Debug)] pub enum Error { - #[error("SQL error")] + #[error("SQL error: {0}")] Sqlite(#[from] rusqlite::Error), } |