summaryrefslogtreecommitdiff
path: root/lockfile/error.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-04-07 00:55:53 +0200
committerGitHub <noreply@github.com>2023-04-07 00:55:53 +0200
commit0dca0c5196249c5f947de9ced572967872c0ad6e (patch)
tree2cd3c57d61dc82ca88bbd08554c19865fdf11433 /lockfile/error.rs
parentd07aa4a0723b04583b7cb1e09152457d866d13d3 (diff)
chore: remove lockfile/ (#18618)
New home at https://github.com/denoland/deno_lockfile.
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),
-}