mirror of
https://github.com/taigrr/adb.git
synced 2026-04-02 02:58:42 -07:00
10 lines
232 B
Go
10 lines
232 B
Go
package adb
|
|
|
|
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")
|