Notify if shared RADIUS secret is missing

This commit is contained in:
Jakob A. Dam 2015-04-08 09:59:37 +02:00 committed by Jakob Aarøe Dam
parent dccef64f40
commit 4a1e1471f6
6 changed files with 22 additions and 6 deletions

View 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

View file

@ -0,0 +1,3 @@
Public Class MissingUser
Inherits Exception
End Class

View file

@ -1,3 +0,0 @@
Public Class MissingUserException
Inherits Exception
End Class