Files
AUTS_Desktop_Prod/AUTS_DataService/ServiceError.vb
MomoWen 027d0f8024 初始化提交
仓库转移到Gitea,初始化提交,可能丢失以前的git版本日志
2025-11-27 16:41:05 +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