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

11 lines
141 B
Go
Raw Normal View History

2019-01-12 04:58:27 +00:00
package controller
type ForgetError struct {
Err error
Reason string
}
func (f *ForgetError) Error() string {
return f.Err.Error()
}