about summary refs log tree commit diff stats
path: root/crates/bytes/src/error.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-07-10 15:50:16 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-07-10 15:50:16 +0200
commit66d56d7a2b64c5ed13860d809d9bf35d86292df2 (patch)
tree2d79d616024e1dd326afd8b7d2b8b05efb165386 /crates/bytes/src/error.rs
parentbuild(.cargo/cargo.toml): Remove pointless `PYO3_PATH` (diff)
downloadyt-66d56d7a2b64c5ed13860d809d9bf35d86292df2.zip
refactor(crates/bytes): Move into yt
`yt_dlp` no longer depends on it.
Diffstat (limited to 'crates/bytes/src/error.rs')
-rw-r--r--crates/bytes/src/error.rs39
1 files changed, 0 insertions, 39 deletions
diff --git a/crates/bytes/src/error.rs b/crates/bytes/src/error.rs
deleted file mode 100644
index c9783d8..0000000
--- a/crates/bytes/src/error.rs
+++ /dev/null
@@ -1,39 +0,0 @@
-// yt - A fully featured command line YouTube client
-//
-// Copyright (C) 2024 Benedikt Peetz <benedikt.peetz@b-peetz.de>
-// SPDX-License-Identifier: GPL-3.0-or-later
-//
-// This file is part of Yt.
-//
-// You should have received a copy of the License along with this program.
-// If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
-
-use std::{fmt::Display, num::ParseIntError};
-
-#[derive(Debug)]
-#[allow(clippy::module_name_repetitions)]
-pub enum BytesError {
-    BytesParseIntError(ParseIntError),
-    NotYetSupported(String),
-}
-
-impl Display for BytesError {
-    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
-        match self {
-            BytesError::BytesParseIntError(e) => {
-                f.write_fmt(format_args!("Failed to parse a number as integer: '{e}'"))
-            },
-            BytesError::NotYetSupported(other) => {
-                f.write_fmt(format_args!("Your extension '{other}' is not yet supported. Only KB,MB,GB or KiB,MiB,GiB are supported"))
-            }
-        }
-    }
-}
-
-impl From<ParseIntError> for BytesError {
-    fn from(value: ParseIntError) -> Self {
-        Self::BytesParseIntError(value)
-    }
-}
-
-impl std::error::Error for BytesError {}