Files
Pilz/Pilz.Simple3DFileParser/Other/Exceptions.vb
Pascal Schedel 2f09834fa0 190607 c1
- Add Pilz.Drawing.Drawing3D.OpenGLFactory
- Fix small bugs in Pilz.UI.PaintingControl
2019-06-07 20:56:19 +02:00

15 lines
271 B
VB.net

Namespace Exceptions
Public Class MaterialException
Inherits Exception
Public Sub New()
MyBase.New
End Sub
Public Sub New(message As String)
MyBase.New(message)
End Sub
End Class
End Namespace