bottin/goldap/error.go
2021-09-16 13:41:01 +02:00

10 lines
112 B
Go

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