(url string)
| 11 | } |
| 12 | |
| 13 | func NewAsyncTimeoutError(url string) error { |
| 14 | return &AsyncTimeoutError{url: url} |
| 15 | } |
| 16 | |
| 17 | func (err *AsyncTimeoutError) Error() string { |
| 18 | return fmt.Sprintf(T("Error: timed out waiting for async job '{{.ErrURL}}' to finish", |
no outgoing calls
no test coverage detected