* 创建验证错误
(message: string, details?: Record<string, unknown>)
| 73 | * 创建验证错误 |
| 74 | */ |
| 75 | static validation(message: string, details?: Record<string, unknown>): AppError { |
| 76 | return new AppError({ |
| 77 | message, |
| 78 | type: ErrorType.VALIDATION, |
| 79 | severity: ErrorSeverity.WARNING, |
| 80 | code: 'VALIDATION_ERROR', |
| 81 | details, |
| 82 | recoverable: true, |
| 83 | }) |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * 创建API错误 |
no outgoing calls
no test coverage detected