* 处理验证错误 * @param {string} message - 验证错误消息
(message)
| 105 | * @param {string} message - 验证错误消息 |
| 106 | */ |
| 107 | static handleValidationError(message) { |
| 108 | return this.handleError(new Error(message), '输入验证', { |
| 109 | severity: 'warning', |
| 110 | customMessage: message |
| 111 | }) |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * 处理异步操作错误 |
nothing calls this directly
no test coverage detected