1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-01 23:36:58 +00:00
Files
norman/controller/error.go
2017-12-16 01:30:46 -07:00

10 lines
123 B
Go

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