Files
edx-platform/scripts/user_retirement/utils/exception.py
Muhammad Farhan Khan 65ea55c8aa Move user retirement scripts code from the tubular repo (#34063)
* refactor: Migragte user retirement scripts code from the tubular repo
2024-02-22 11:09:00 -05:00

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