bottin/goldap/error.go

10 lines
112 B
Go
Raw Normal View History

2021-09-16 13:41:01 +02:00
package message
type LdapError struct {
Msg string
}
func (err LdapError) Error() string {
return err.Msg
}