bottin/goldap/error.go
Quentin Dufour 563fc272a3
Vendor goldap, fix ASN.1 BER integer and length encoding
- Add tests for goldap to prevent regressions
 - Disable reconnection for our functional tests
2021-09-16 13:09:26 +02:00

9 lines
112 B
Go

package message
type LdapError struct {
Msg string
}
func (err LdapError) Error() string {
return err.Msg
}