bottin/goldap/error.go

10 lines
112 B
Go
Raw Permalink Normal View History

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