You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
910 B
33 lines
910 B
Imports System
|
|
|
|
Namespace Rpc
|
|
''' <summary>
|
|
''' Error associated with work on RPC protocol
|
|
''' </summary>
|
|
Public Class RpcException
|
|
Inherits SystemException
|
|
''' <summary>
|
|
''' Error associated with work on RPC protocol
|
|
''' </summary>
|
|
Public Sub New()
|
|
End Sub
|
|
|
|
''' <summary>
|
|
''' Error associated with work on RPC protocol
|
|
''' </summary>
|
|
''' <paramname="message"></param>
|
|
Public Sub New(ByVal message As String)
|
|
MyBase.New(message)
|
|
End Sub
|
|
|
|
''' <summary>
|
|
''' Error associated with work on RPC protocol
|
|
''' </summary>
|
|
''' <paramname="message"></param>
|
|
''' <paramname="innerEx"></param>
|
|
Public Sub New(ByVal message As String, ByVal innerEx As Exception)
|
|
MyBase.New(message, innerEx)
|
|
End Sub
|
|
End Class
|
|
End Namespace
|