Files
RasadDam_Backend/apps/herd/exception.py

18 lines
765 B
Python
Raw Normal View History

from rest_framework import status
from rest_framework.exceptions import APIException
class UniqueRancherApiException(APIException):
status_code = status.HTTP_403_FORBIDDEN
default_detail = "دامدار با این کد ملی از قبل در سیستم وجود دارد" # noqa
class DuplicateRancherException(APIException):
status_code = status.HTTP_403_FORBIDDEN
2025-11-11 14:09:06 +03:30
default_detail = "اطلاعات دامدار استعلام شده دارای مشکل میباشد با پشتیبانی تماس بگیرید" # noqa
class HerdCapacityException(APIException):
status_code = status.HTTP_403_FORBIDDEN
default_detail = "مقدار حجم سبک و سنگین وارد شده از ظرفیت گله بیشتر میباشد" # noqa