Skip to content

Commit

Permalink
add FirebaseAuthWeakPasswordException
Browse files Browse the repository at this point in the history
  • Loading branch information
nbransby committed Aug 27, 2023
1 parent aee04f2 commit 5c6d0f2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.1.0
version=0.1.1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package com.google.firebase.auth

class FirebaseAuthInvalidCredentialsException(errorCode: String, detailMessage: String) : FirebaseAuthException(errorCode, detailMessage)
open class FirebaseAuthInvalidCredentialsException(errorCode: String, detailMessage: String) : FirebaseAuthException(errorCode, detailMessage)
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package com.google.firebase.auth

class FirebaseAuthWeakPasswordException(errorCode: String, detailMessage: String) : FirebaseAuthInvalidCredentialsException(errorCode, detailMessage)

0 comments on commit 5c6d0f2

Please sign in to comment.