open-vault/vendor/layeh.com/radius/errors.go
Jeff Mitchell 958afd4019 Bump deps
2018-02-10 19:29:52 -05:00

11 lines
269 B
Go

package radius
// NonAuthenticResponseError is returned when a client was expecting
// a valid response but did not receive one.
type NonAuthenticResponseError struct {
}
func (e *NonAuthenticResponseError) Error() string {
return `radius: non-authentic response`
}