Ejemplo n.º 1
0
 internal cUnsuccessfulCompletionException(cResponseText pResponseText, fCapabilities pTryIgnoring, cTrace.cContext pContext)
 {
     ResponseText = pResponseText;
     TryIgnoring  = pTryIgnoring;
     pContext.TraceError("{0}: {1}", nameof(cUnsuccessfulCompletionException), pResponseText);
 }
Ejemplo n.º 2
0
 internal cAuthenticationMechanismsException(bool pTLSIssue, cTrace.cContext pContext)
 {
     TLSIssue = pTLSIssue;
     pContext.TraceError("{0}: {1}", nameof(cAuthenticationMechanismsException), pTLSIssue);
 }
Ejemplo n.º 3
0
 internal cUnilateralByeException(cResponseText pResponseText, cTrace.cContext pContext)
 {
     ResponseText = pResponseText;
     pContext.TraceError("{0}: {1}", nameof(cUnilateralByeException), pResponseText);
 }
Ejemplo n.º 4
0
 internal cCredentialsException(cResponseText pResponseText, cTrace.cContext pContext)
 {
     ResponseText = pResponseText;
     pContext.TraceError("{0}: {1}", nameof(cCredentialsException), pResponseText);
 }
Ejemplo n.º 5
0
 internal cCredentialsException(cTrace.cContext pContext)
 {
     ResponseText = null;
     pContext.TraceError(nameof(cCredentialsException));
 }
Ejemplo n.º 6
0
 internal cHomeServerReferralException(cResponseText pResponseText, cTrace.cContext pContext)
 {
     ResponseText = pResponseText;
     pContext.TraceError("{0}: {1}", nameof(cHomeServerReferralException), pResponseText);
 }
Ejemplo n.º 7
0
 internal cUnexpectedServerActionException(fCapabilities pTryIgnoring, string pMessage, cTrace.cContext pContext) : base(pMessage)
 {
     TryIgnoring = pTryIgnoring;
     pContext.TraceError("{0}: {1}", nameof(cUnexpectedServerActionException), pMessage);
 }
Ejemplo n.º 8
0
 internal cProtocolErrorException(cCommandResult pCommandResult, fCapabilities pTryIgnoring, cTrace.cContext pContext)
 {
     CommandResult = pCommandResult;
     TryIgnoring   = pTryIgnoring;
     pContext.TraceError("{0}: {1}", nameof(cProtocolErrorException), pCommandResult);
 }