RDSFactor/server/exceptions/MissingLdapField.vb
Jakob Aarøe Dam f886f3af72 SMS sending
2015-04-30 14:31:18 +02:00

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