From 08a235d55eea7270bf35784081a5ab06b800902d Mon Sep 17 00:00:00 2001 From: Joshua Arulsamy Date: Thu, 13 Aug 2020 02:52:11 -0600 Subject: [PATCH] :pencil: Add docstrings --- PlexBot/exceptions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/PlexBot/exceptions.py b/PlexBot/exceptions.py index 193aac7..df6c957 100644 --- a/PlexBot/exceptions.py +++ b/PlexBot/exceptions.py @@ -1,6 +1,10 @@ class MediaNotFoundError(Exception): + """Raised when a PlexAPI media resource cannot be found.""" + pass class VoiceChannelError(Exception): + """Raised when user is not connected to a voice channel.""" + pass