mirror of https://github.com/k3s-io/k3s
11 lines
141 B
Go
11 lines
141 B
Go
|
package controller
|
||
|
|
||
|
type ForgetError struct {
|
||
|
Err error
|
||
|
Reason string
|
||
|
}
|
||
|
|
||
|
func (f *ForgetError) Error() string {
|
||
|
return f.Err.Error()
|
||
|
}
|