bottin/goldap/error.go
2021-07-13 15:23:50 +02:00

10 lines
112 B
Go

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