RDSFactor/server/exceptions/SMSSendException.vb
Jakob Aarøe Dam f886f3af72 SMS sending
2015-04-30 14:31:18 +02:00

9 lines
174 B
VB.net

Public Class SMSSendException
Inherits Exception
Public Sub New(ByVal message As String)
MyBase.New("SMS send error: " & message)
End Sub
End Class