13 lines
514 B
Python
13 lines
514 B
Python
from rest_framework.exceptions import APIException
|
|
from rest_framework import status
|
|
|
|
|
|
class UniqueRancherApiException(APIException):
|
|
status_code = status.HTTP_403_FORBIDDEN
|
|
default_detail = "دامدار با این کد ملی از قبل در سیستم وجود دارد" # noqa
|
|
|
|
|
|
class HerdCapacityException(APIException):
|
|
status_code = status.HTTP_403_FORBIDDEN
|
|
default_detail = "مقدار حجم سبک و سنگین وارد شده از ظرفیت گله بیشتر میباشد" # noqa
|