- package com.pharmacopoeia.exception;
- /**
- * 百炼 API 调用频率超限异常。
- * 与用户侧限流 429 不同,这里表示服务端到 LLM 的调用达到上限,
- * 应该返回 503 告知前端服务暂时不可用。
- */
- public class DashScopeRateLimitExceededException extends RuntimeException {
- public DashScopeRateLimitExceededException(String message) {
- super(message);
- }
- }
|