Files
AUTS_Desktop_Prod/AUTS_DataService/ServiceError.vb

8 lines
228 B
VB.net
Raw Normal View History

Public Class ServiceError
Public Shared Event ServiceError(type As String, msg As String)
Public Shared Sub RecodeError(type As String, msg As String)
RaiseEvent ServiceError(type, msg)
End Sub
End Class