summaryrefslogtreecommitdiff
path: root/lockfile/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lockfile/error.rs')
-rw-r--r--lockfile/error.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/lockfile/error.rs b/lockfile/error.rs
deleted file mode 100644
index 361303316..000000000
--- a/lockfile/error.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
-
-use thiserror::Error;
-
-#[derive(Debug, Error)]
-pub enum LockfileError {
- #[error(transparent)]
- Io(#[from] std::io::Error),
-
- #[error("Unable to read lockfile: \"{0}\"")]
- ReadError(String),
-
- #[error("Unable to parse contents of lockfile: \"{0}\"")]
- ParseError(String),
-}