Skip to content

Commit

Permalink
Update exception.py
Browse files Browse the repository at this point in the history
  • Loading branch information
seifibrahim32 authored Jul 30, 2024
1 parent 9a8773c commit 0a3288a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gazu/exception.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,14 @@ class TaskMustBeADictException(Exception):
Error raised when a task should be a dict.
"""

class FileDoesntExist(Exception):

class FileDoesntExistException(Exception):
"""
Error raised when a file should be existed when we submit a preview.
"""

class ProjectDoesntExist(Exception):

class ProjectDoesntExistException(Exception):
"""
Error raised when a project isn't available.
"""

0 comments on commit 0a3288a

Please sign in to comment.