Imports System
Imports Rpc.MessageProtocol
Namespace Rpc
'''
''' Authenticate error
'''
Public Class AuthenticateException
Inherits ReplyException
'''
''' Authenticate error
'''
'''
Public Sub New(ByVal replyBody As reply_body)
MyBase.New(replyBody)
End Sub
'''
''' Authenticate error
'''
'''
'''
Public Sub New(ByVal replyBody As reply_body, ByVal message As String)
MyBase.New(replyBody, message)
End Sub
'''
''' Authenticate error
'''
'''
'''
'''
Public Sub New(ByVal replyBody As reply_body, ByVal message As String, ByVal innerEx As Exception)
MyBase.New(replyBody, message, innerEx)
End Sub
End Class
End Namespace