18 lines
624 B
Go
18 lines
624 B
Go
package step
|
|
|
|
// Error enumerates errors common to this package.
|
|
type Error string; const (
|
|
ErrCircularInheritance Error = "circular inheritance"
|
|
ErrMetaMalformed Error = "metadata is malformed"
|
|
ErrMetaNeverClosed Error = "metadata is never closed"
|
|
ErrTypeMismatch Error = "type mismatch"
|
|
ErrPluginBadSymbol Error = "plugin has an incorrect symbol"
|
|
ErrPluginNotOwnedByRoot Error = "plugin is not owned by the root user"
|
|
ErrInsufficientSystem Error = "the system cannot perform this action"
|
|
)
|
|
|
|
// Error fulfills the error interface.
|
|
func (err Error) Error () string {
|
|
return string(err)
|
|
}
|