Exemplo n.º 1
0
 public FirebaseAuthException(string message, FirebaseAuthExceptionType exceptionType)
     : base(message)
 {
     FirebaseAuthExceptionType = exceptionType;
 }
Exemplo n.º 2
0
 public FirebaseAuthException(string message, Exception inner, FirebaseAuthExceptionType exceptionType)
     : base(message, inner)
 {
     FirebaseAuthExceptionType = exceptionType;
 }