701ea3a245
Public API for error querying and formatting lives in top-level package.
17 lines
479 B
Go
17 lines
479 B
Go
// Code generated by "stringer -type=ErrCode"; DO NOT EDIT
|
|
|
|
package errors
|
|
|
|
import "fmt"
|
|
|
|
const _ErrCode_name = "AssertionErrorParseErrorServerNotAvailableNetworkErrorConnectionResetErrorAdbErrorDeviceNotFoundFileNoExistError"
|
|
|
|
var _ErrCode_index = [...]uint8{0, 14, 24, 42, 54, 74, 82, 96, 112}
|
|
|
|
func (i ErrCode) String() string {
|
|
if i >= ErrCode(len(_ErrCode_index)-1) {
|
|
return fmt.Sprintf("ErrCode(%d)", i)
|
|
}
|
|
return _ErrCode_name[_ErrCode_index[i]:_ErrCode_index[i+1]]
|
|
}
|