(surfaceId: string, path: string, message: string)
| 709 | * 创建验证错误 |
| 710 | */ |
| 711 | export function createValidationError(surfaceId: string, path: string, message: string): ValidationError { |
| 712 | return { |
| 713 | code: 'VALIDATION_FAILED', |
| 714 | surfaceId, |
| 715 | path, |
| 716 | message, |
| 717 | }; |
| 718 | } |
| 719 | |
| 720 | /** |
| 721 | * 创建通用错误 |
no outgoing calls
no test coverage detected