8 lines
228 B
VB.net
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
|