mirror of
https://github.com/jakobadam/RDSFactor.git
synced 2025-07-25 10:48:16 +02:00
9 lines
206 B
VB.net
9 lines
206 B
VB.net
Public Class MissingLdapField
|
|
|
|
Inherits Exception
|
|
|
|
Public Sub New(field As String, username As String)
|
|
MyBase.New("No " & field & " entry in LDAP for " & username)
|
|
End Sub
|
|
|
|
End Class
|