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