1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-04 16:50:41 +00:00
Files
norman/controller/error.go

10 lines
123 B
Go
Raw Normal View History

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