15 lines
205 B
Python
15 lines
205 B
Python
"""
|
|
Exceptions used by various utilities.
|
|
"""
|
|
|
|
|
|
class BackendError(Exception):
|
|
pass
|
|
|
|
|
|
class HttpDoesNotExistException(Exception):
|
|
"""
|
|
Called when the server sends a 404 error.
|
|
"""
|
|
pass
|