Quentin Dufour
563fc272a3
- Add tests for goldap to prevent regressions - Disable reconnection for our functional tests
9 lines
112 B
Go
9 lines
112 B
Go
package message
|
|
|
|
type LdapError struct {
|
|
Msg string
|
|
}
|
|
|
|
func (err LdapError) Error() string {
|
|
return err.Msg
|
|
}
|