From 8c0f78a3f7bf67e20a945e3c8933f90a5c402844 Mon Sep 17 00:00:00 2001 From: "sashakoshka@tebibyte.media" Date: Fri, 13 Dec 2024 13:04:22 -0500 Subject: [PATCH] Add error for impossible situations --- error.go | 1 + 1 file changed, 1 insertion(+) diff --git a/error.go b/error.go index faed089..01a21e9 100644 --- a/error.go +++ b/error.go @@ -11,6 +11,7 @@ type Error string; const ( ErrPluginNotOwnedByRoot Error = "plugin is not owned by the root user" ErrPathNotAbsolute Error = "path is not absolute" ErrInsufficientSystem Error = "the system cannot perform this action" + ErrPigsFlying Error = "play the lottery today" ) // Error fulfills the error interface.