Files
k3s/vendor/github.com/rancher/norman/controller/error.go
Darren Shepherd fa08d6076c Update vendor
2019-01-11 21:58:27 -07:00

11 lines
141 B
Go

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