bottin/goldap/error.go

10 lines
112 B
Go

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