mirror of
https://github.com/hashicorp/vault.git
synced 2026-01-16 22:21:23 +01:00
11 lines
269 B
Go
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`
|
|
}
|