mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2025-08-06 17:40:58 +00:00
10 lines
123 B
Go
10 lines
123 B
Go
package lookpath
|
|
|
|
type Error struct {
|
|
Name string
|
|
Err error
|
|
}
|
|
|
|
func (e *Error) Error() string {
|
|
return e.Err.Error()
|
|
}
|