diff options
author | Igor Zinkovsky <igor@deno.com> | 2023-11-28 21:04:07 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-28 21:04:07 -0800 |
commit | 75ec650f080ac66e98d8b848118dc2349ca70aa8 (patch) | |
tree | 1024d70627165090f100d0203a5047072f99976a /runtime/errors.rs | |
parent | 32c041c8d7c5d72d4c1850f1fd6f3f38b530a16c (diff) |
chore(ext/kv): update denokv crates (#21357)
Diffstat (limited to 'runtime/errors.rs')
-rw-r--r-- | runtime/errors.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/errors.rs b/runtime/errors.rs index f48f01246..2061a5e0b 100644 --- a/runtime/errors.rs +++ b/runtime/errors.rs @@ -212,7 +212,7 @@ pub fn get_error_class_name(e: &AnyError) -> Option<&'static str> { .map(get_url_parse_error_class) }) .or_else(|| { - e.downcast_ref::<deno_kv::sqlite::TypeError>() + e.downcast_ref::<deno_kv::sqlite::SqliteBackendError>() .map(|_| "TypeError") }) .or_else(|| { |