mirror of
https://github.com/jakobadam/RDSFactor.git
synced 2025-06-08 05:24:40 +02:00
9 lines
224 B
VB.net
9 lines
224 B
VB.net
Public Class MissingRadiusSecret
|
|
|
|
Inherits Exception
|
|
|
|
Public Sub New(ByVal ip As String)
|
|
MyBase.New("No shared secret for ip: " & ip & ". This MUST be inserted in the config file.")
|
|
End Sub
|
|
|
|
End Class
|