Exemplo n.º 1
0
 public S2SAuthException(S2SAuthErrorCode errorCode, string message) : this(errorCode, message, null)
 {
 }
Exemplo n.º 2
0
 public S2SAuthException(S2SAuthErrorCode errorCode, string message, Exception innerException) : base(message, innerException)
 {
     this.ErrorCode = errorCode;
 }
Exemplo n.º 3
0
 public S2SAuthException(S2SAuthErrorCode errorCode) : this(errorCode, string.Empty, null)
 {
 }