-
-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): improve error handling while waiting for PVE tasks to comp…
…lete (#526)
- Loading branch information
Showing
4 changed files
with
52 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
package api | ||
|
||
import "fmt" | ||
|
||
// Error is a sentinel error type for API errors. | ||
type Error string | ||
|
||
func (err Error) Error() string { | ||
return string(err) | ||
} | ||
|
||
// ErrNoDataObjectInResponse is returned when the server does not include a data object in the response. | ||
const ErrNoDataObjectInResponse Error = "the server did not include a data object in the response" | ||
|
||
// HTTPError is a generic error type for HTTP errors. | ||
type HTTPError struct { | ||
Code int | ||
Message string | ||
} | ||
|
||
func (err *HTTPError) Error() string { | ||
return fmt.Sprintf("received an HTTP %d response - Reason: %s", err.Code, err.Message) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters