k3s/vendor/github.com/rancher/norman/controller/error.go

11 lines
141 B
Go

package controller
type ForgetError struct {
Err error
Reason string
}
func (f *ForgetError) Error() string {
return f.Err.Error()
}