adradius/vendor/layeh.com/radius/errors.go

11 lines
269 B
Go
Raw Normal View History

2020-03-02 23:30:09 +01:00
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`
}