(cause string)
| 122 | } |
| 123 | |
| 124 | func NewServiceUnavailableError(cause string) error { |
| 125 | return ServiceUnavailableError{ |
| 126 | Cause: cause, |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | type ServiceUnavailableError struct { |
| 131 | Cause string |
no outgoing calls
no test coverage detected