Home
last modified time | relevance | path

Searched defs:PackageError (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/load/
Dpkg.go456 type PackageError struct { struct
457 ImportStack []string // shortest path from package named on command line to this one
458 Pos string // position of error
459 Err error // the error itself
460 IsImportCycle bool // the error is an import cycle
461 …d bool // whether the error is soft or hard; soft errors are ignored in some places
462 alwaysPrintStack bool // whether to always print the ImportStack
465 func (p *PackageError) Error() string {
491 func (p *PackageError) Unwrap() error { return p.Err }
495 func (p *PackageError) MarshalJSON() ([]byte, error) {
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/doc/
Dpkg.go77 type PackageError string // type returned by pkg.Fatalf. type
/aosp_15_r20/external/autotest/client/common_lib/
H A Derror.py165 class PackageError(TestError): class