summaryrefslogtreecommitdiffstats
path: root/src/auth/error.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-04-16 14:51:47 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-04-16 14:51:47 -0500
commit22c72bba9819475509e901ffba4e38ed30d13dd3 (patch)
tree7c1f3ae9be9f1b2358a75872cbd1d8165d7c2163 /src/auth/error.rs
parent7b67a5f28d327c665be64a0091b0a46fedf3e99a (diff)
fix: remove unused error types
Diffstat (limited to 'src/auth/error.rs')
-rw-r--r--src/auth/error.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/auth/error.rs b/src/auth/error.rs
index 8b1bb4c..17cf6d1 100644
--- a/src/auth/error.rs
+++ b/src/auth/error.rs
@@ -33,9 +33,6 @@ pub enum Error {
#[error("Authorization token not found")]
JwtNotFound,
- #[error("Token found was invalid type")]
- InvalidTokenType,
-
#[error("The user belonging to this token no longer exists")]
UserNotFound,
}