1
0
mirror of https://github.com/rancher/norman.git synced 2025-06-24 06:27:08 +00:00
norman/controller/error.go

10 lines
123 B
Go
Raw Normal View History

2017-12-16 08:21:53 +00:00
package controller
type ForgetError struct {
Err error
}
func (f *ForgetError) Error() string {
return f.Err.Error()
}