diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2024-10-17 09:43:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-17 09:43:04 -0700 |
commit | ed13efc4ac3ed5262d025bd7228785553fecff1c (patch) | |
tree | b4a29cbfb75e91a6e16fdc0763b1d2000db2db98 /ext/cache/lib.rs | |
parent | 3b62e05062805d45fd626ac8e413e9b7aee7c3a1 (diff) |
refactor(ext/net): use concrete error type (#26227)
Diffstat (limited to 'ext/cache/lib.rs')
-rw-r--r-- | ext/cache/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/cache/lib.rs b/ext/cache/lib.rs index 08661c349..b9cc5427c 100644 --- a/ext/cache/lib.rs +++ b/ext/cache/lib.rs @@ -28,7 +28,7 @@ pub enum CacheError { Resource(deno_core::error::AnyError), #[error(transparent)] Other(deno_core::error::AnyError), - #[error(transparent)] + #[error("{0}")] Io(#[from] std::io::Error), } |