Improve Error handling across the board

This commit is contained in:
Jonathan Jenne
2022-04-26 12:02:00 +02:00
parent 13af72dee5
commit 3e41502766
19 changed files with 404 additions and 141 deletions

View File

@@ -57,18 +57,12 @@
MyBase.New(message)
End Sub
End Class
Public Class NoMandatorException
Public Class LengthExceededException
Inherits MultiToolException
Public Sub New(message As String)
MyBase.New(message)
End Sub
End Class
Public Class MalformedXmlException
Inherits MultiToolException
Public Sub New(message As String)
MyBase.New(message)
Public Sub New(attribute As String)
MyBase.New(attribute)
End Sub
End Class