go-captiveportal/error.go

8 lines
124 B
Go
Raw Normal View History

2020-10-16 17:27:44 +02:00
package captiveportal
import "errors"
var (
ErrClientIdentificationFailed = errors.New("client identification failed")
)