mirror of
https://github.com/taigrr/adb.git
synced 2026-04-02 02:58:42 -07:00
merge
This commit is contained in:
10
errors.go
10
errors.go
@@ -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")
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user