2026-03-13 14:36:31 +08:00
|
|
|
package com.solution.common.constant;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 火力规则常量
|
|
|
|
|
*/
|
|
|
|
|
public class ExceptionConstants {
|
|
|
|
|
|
|
|
|
|
public static final String PARAMETER_EXCEPTION = "参数异常";
|
|
|
|
|
|
|
|
|
|
public static final String RESULT_EXCEPTION = "结果异常";
|
|
|
|
|
|
|
|
|
|
public static final String NOT_FOUND_CARRIAGE_CHAIN_HANDLER = "not found carriage chain handler!";
|
|
|
|
|
|
|
|
|
|
public static final String NOT_FOUND_F22_COMPONENT = "未找到 F-22 组件";
|
|
|
|
|
|
2026-03-14 11:17:55 +08:00
|
|
|
public static final String SCENE_CONFIG_NOT_NULL = "场景配置不能为空";
|
|
|
|
|
|
2026-03-13 14:36:31 +08:00
|
|
|
}
|