From 47ecd7da1f1b1c0d72a31aa70c0f982bc3cf468d Mon Sep 17 00:00:00 2001 From: Fabio De Simone Date: Thu, 3 Jan 2019 18:08:54 +0100 Subject: [PATCH] added PastDateError this new exception is used when checking if the date specified is in the future for /calendar events --- errors.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/errors.py b/errors.py index ae5198de..13271545 100644 --- a/errors.py +++ b/errors.py @@ -48,3 +48,6 @@ class VideoIsNotReady(Exception): class PrivateError(Exception): pass + +class PastDateError(Exception): + pass