mirror of
https://github.com/jakobadam/RDSFactor.git
synced 2025-08-02 22:41:50 +02:00
Notify if shared RADIUS secret is missing
This commit is contained in:
parent
dccef64f40
commit
4a1e1471f6
6 changed files with 22 additions and 6 deletions
9
CICRadarR/exceptions/MissingRadiusSecret.vb
Normal file
9
CICRadarR/exceptions/MissingRadiusSecret.vb
Normal file
|
@ -0,0 +1,9 @@
|
|||
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
|
3
CICRadarR/exceptions/MissingUser.vb
Normal file
3
CICRadarR/exceptions/MissingUser.vb
Normal file
|
@ -0,0 +1,3 @@
|
|||
Public Class MissingUser
|
||||
Inherits Exception
|
||||
End Class
|
|
@ -1,3 +0,0 @@
|
|||
Public Class MissingUserException
|
||||
Inherits Exception
|
||||
End Class
|
Loading…
Add table
Add a link
Reference in a new issue