diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-04-07 00:55:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-07 00:55:53 +0200 |
commit | 0dca0c5196249c5f947de9ced572967872c0ad6e (patch) | |
tree | 2cd3c57d61dc82ca88bbd08554c19865fdf11433 /lockfile/error.rs | |
parent | d07aa4a0723b04583b7cb1e09152457d866d13d3 (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.rs | 15 |
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), -} |