14 lines
285 B
Python
14 lines
285 B
Python
|
"""This module is a collection of project-wide exceptions."""
|
||
|
|
||
|
|
||
|
class NotFoundException(Exception):
|
||
|
"""Raised when a resource was unexpectedly not found."""
|
||
|
|
||
|
pass
|
||
|
|
||
|
|
||
|
class DataIntegrityException(Exception):
|
||
|
"""Raised when a resource was unexpectedly not found."""
|
||
|
|
||
|
pass
|