mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-10 03:13:15 +00:00
13 lines
230 B
Go
13 lines
230 B
Go
package actionsgithubcom
|
|
|
|
type controllerError string
|
|
|
|
func (e controllerError) Error() string {
|
|
return string(e)
|
|
}
|
|
|
|
const (
|
|
retryableError = controllerError("retryable error")
|
|
fatalError = controllerError("fatal error")
|
|
)
|