general_posts/python-weather-api/api/error.py

5 lines
177 B
Python

class Error(Exception):
def __init__(self, message, status_code=500):
super().__init__(message)
self.message = message
self.status_code = status_code