This commit is contained in:
2022-07-19 17:50:10 -07:00
parent 674b639850
commit a0a4684c95
6 changed files with 5451 additions and 6 deletions

View File

@@ -4,6 +4,10 @@ import (
"errors"
)
// When an execution should have data but has none, but the exact error is
// indeterminite, this error is returned
var ErrStdoutEmpty = errors.New("stdout expected to contain data but was empty")
var (
// When an execution should have data but has none, but the exact error is
// indeterminite, this error is returned
ErrStdoutEmpty = errors.New("stdout expected to contain data but was empty")
ErrNotInstalled = errors.New("adb is not installed or not in PATH")
ErrUnspecified = errors.New("an unknown error has occurred, please open an issue on GitHub")
)