jj: WIP: Rework Windream Module

This commit is contained in:
Jonathan Jenne
2018-08-24 17:03:13 +02:00
parent 2f71d46638
commit 8b9de4d0f8
7 changed files with 783 additions and 51 deletions

View File

@@ -0,0 +1,18 @@
Imports System.Runtime.InteropServices
Public Class Exceptions
Public Class SessionException
Inherits Exception
Public Sub New()
End Sub
Public Sub New(message As String)
MyBase.New(message)
End Sub
Public Sub New(message As String, innerException As Exception)
MyBase.New(message, innerException)
End Sub
End Class
End Class