Imports System
Namespace Rpc
'''
''' Error associated with work on RPC protocol
'''
Public Class RpcException
Inherits SystemException
'''
''' Error associated with work on RPC protocol
'''
Public Sub New()
End Sub
'''
''' Error associated with work on RPC protocol
'''
'''
Public Sub New(ByVal message As String)
MyBase.New(message)
End Sub
'''
''' Error associated with work on RPC protocol
'''
'''
'''
Public Sub New(ByVal message As String, ByVal innerEx As Exception)
MyBase.New(message, innerEx)
End Sub
End Class
End Namespace