From 36356914c07fc5bc93d5dffd7b2b3b9454dc2c4d Mon Sep 17 00:00:00 2001 From: Crussader <75786691+Crussader@users.noreply.github.com> Date: Tue, 26 Oct 2021 21:13:11 +0400 Subject: [PATCH] Update exceptions.py New Exception `OptionNotToggled` --- pomice/exceptions.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pomice/exceptions.py b/pomice/exceptions.py index 4738698..1ce8c7f 100644 --- a/pomice/exceptions.py +++ b/pomice/exceptions.py @@ -28,6 +28,9 @@ class NoNodesAvailable(PomiceException): """There are no nodes currently available.""" pass +class OptionNotToggled(PomiceException): + """The Option was not Toggled, Therefore the feature Could not be used.""" + pass class TrackInvalidPosition(PomiceException): """An invalid position was chosen for a track."""