Beispiel #1
0
 public FirebaseAuthException(string message, FirebaseAuthExceptionType exceptionType)
     : base(message)
 {
     FirebaseAuthExceptionType = exceptionType;
 }
Beispiel #2
0
 public FirebaseAuthException(string message, Exception inner, FirebaseAuthExceptionType exceptionType)
     : base(message, inner)
 {
     FirebaseAuthExceptionType = exceptionType;
 }