Add error for impossible situations

This commit is contained in:
Sasha Koshka 2024-12-13 13:04:22 -05:00
parent 60c52ee4ce
commit 8c0f78a3f7

View File

@ -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.