1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

added PastDateError

this new exception is used when checking if the date specified is in the future for /calendar events
This commit is contained in:
Fabio De Simone 2019-01-03 18:08:54 +01:00 committed by Stefano Pigozzi
parent 553d658ce0
commit 47ecd7da1f

View file

@ -48,3 +48,6 @@ class VideoIsNotReady(Exception):
class PrivateError(Exception):
pass
class PastDateError(Exception):
pass