mirror of
https://github.com/rancher/norman.git
synced 2025-06-24 06:27:08 +00:00
10 lines
123 B
Go
10 lines
123 B
Go
|
package controller
|
||
|
|
||
|
type ForgetError struct {
|
||
|
Err error
|
||
|
}
|
||
|
|
||
|
func (f *ForgetError) Error() string {
|
||
|
return f.Err.Error()
|
||
|
}
|