http-monitoring/src/exceptions.py
2023-02-02 11:05:17 +07:00

9 lines
227 B
Python

class NoContentException(Exception):
code = 404
message = "It seems the response is empty"
class BadGatewayException(Exception):
code = 502
message = "Failed to sending the email due of run into some trouble"