mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-03 10:20:20 +00:00
14 lines
214 B
Go
14 lines
214 B
Go
// Copyright 2026 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package lookpath
|
|
|
|
type Error struct {
|
|
Name string
|
|
Err error
|
|
}
|
|
|
|
func (e *Error) Error() string {
|
|
return e.Err.Error()
|
|
}
|