2017-03-05 07:56:08 +00:00
|
|
|
package pipeline
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// ErrSkip is used as a return value when container execution should be
|
|
|
|
// skipped at runtime. It is not returned as an error by any function.
|
|
|
|
ErrSkip = errors.New("Skipped")
|
|
|
|
|
|
|
|
// ErrCancel is used as a return value when the container execution receives
|
|
|
|
// a cancellation signal from the context.
|
2021-11-24 01:01:12 +00:00
|
|
|
ErrCancel = errors.New("Canceled")
|
2017-03-05 07:56:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// An ExitError reports an unsuccessful exit.
|
|
|
|
type ExitError struct {
|
|
|
|
Name string
|
|
|
|
Code int
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error returns the error message in string format.
|
|
|
|
func (e *ExitError) Error() string {
|
|
|
|
return fmt.Sprintf("%s : exit code %d", e.Name, e.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
// An OomError reports the process received an OOMKill from the kernel.
|
|
|
|
type OomError struct {
|
|
|
|
Name string
|
|
|
|
Code int
|
|
|
|
}
|
|
|
|
|
2022-10-05 11:39:48 +00:00
|
|
|
// Error returns the error message in string format.
|
2017-03-05 07:56:08 +00:00
|
|
|
func (e *OomError) Error() string {
|
|
|
|
return fmt.Sprintf("%s : received oom kill", e.Name)
|
|
|
|
}
|