diff --git a/gazu/exception.py b/gazu/exception.py index abb87a1b..7d6371dc 100644 --- a/gazu/exception.py +++ b/gazu/exception.py @@ -75,3 +75,15 @@ class TaskMustBeADictException(Exception): """ Error raised when a task should be a dict. """ + + +class FileDoesntExistException(Exception): + """ + Error raised when a file should be existed when we submit a preview. + """ + + +class ProjectDoesntExistException(Exception): + """ + Error raised when a project isn't available. + """