tuoheng_alg_airport/enums/ExceptionEnum.py

14 lines
323 B
Python
Raw Permalink Normal View History

2023-01-16 16:44:30 +08:00
from enum import Enum, unique
# 异常枚举
@unique
class ExceptionType(Enum):
PULL_STREAM_URL_EXCEPTION = ("AP000", "拉流地址不能为空!")
PUSH_STREAM_URL_EXCEPTION = ("AP001", "推流地址不能为空!")
SERVICE_INNER_EXCEPTION = ("AP999", "系统内部异常, 请联系工程师定位处理!")