Handle ZUGFeRD Files as filegroups

This commit is contained in:
Jonathan Jenne
2019-03-12 15:25:52 +01:00
parent 53f0632f4e
commit af00fab575
3 changed files with 192 additions and 56 deletions

31
Jobs/Exceptions.vb Normal file
View File

@@ -0,0 +1,31 @@
Imports System.IO
Public Class Exceptions
Public Class MissingValueException
Inherits ApplicationException
Public ReadOnly File As FileInfo
Public Sub New(File As FileInfo)
MyBase.New()
Me.File = File
End Sub
End Class
Public Class TooMuchFerdsException
Inherits ApplicationException
Public Sub New()
MyBase.New()
End Sub
End Class
Public Class NoFerdsException
Inherits ApplicationException
Public Sub New()
MyBase.New()
End Sub
End Class
End Class