* 创建网络错误
(message: string, cause?: Error)
| 107 | * 创建网络错误 |
| 108 | */ |
| 109 | static network(message: string, cause?: Error): AppError { |
| 110 | return new AppError({ |
| 111 | message, |
| 112 | type: ErrorType.NETWORK, |
| 113 | severity: ErrorSeverity.ERROR, |
| 114 | code: 'NETWORK_ERROR', |
| 115 | recoverable: true, |
| 116 | cause, |
| 117 | }) |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * 创建超时错误 |
no outgoing calls
no test coverage detected