This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AUTS_OLD/AUTS_DataService/ServiceError.vb
2024-03-11 16:34:21 +08:00

8 lines
228 B
VB.net

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