act/pkg/lookpath/error.go

11 lines
123 B
Go
Raw Normal View History

2022-11-17 05:29:45 +08:00
package lookpath
type Error struct {
Name string
Err error
}
func (e *Error) Error() string {
return e.Err.Error()
}