Beispiel #1
0
 public OAuthFailedException(OAuthFailureReason reason, string message) : this(message) { FailureReason = reason; }
Beispiel #2
0
 public OAuthFailedException(OAuthFailureReason reason, string message, Exception innerException) : this(message, innerException)
 {
     FailureReason = reason;
 }
Beispiel #3
0
 public OAuthFailedException(OAuthFailureReason reason) : this()
 {
     FailureReason = reason;
 }