Files
unstract/backend/apps/exceptions.py
2024-02-25 16:19:36 +05:30

6 lines
163 B
Python

from rest_framework.exceptions import APIException
class FetchAppListFailed(APIException):
status_code = 400
default_detail = "Failed to fetch App list."