aboutsummaryrefslogtreecommitdiff
path: root/goldap/error.go
blob: 7b5e1c669325a090a12ae5e69efea1513e1a0507 (plain) (blame)
1
2
3
4
5
6
7
8
9
package message

type LdapError struct {
	Msg string
}

func (err LdapError) Error() string {
	return err.Msg
}