1
0
mirror of https://github.com/rancher/norman.git synced 2025-06-23 22:18:34 +00:00
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()
}