Skip to content

Commit

Permalink
feat: Improve exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Mar 14, 2024
1 parent af0aba4 commit b15efa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/revanced/library/ApkSigner.kt
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ object ApkSigner {
logger.fine("Reading key and certificate pair from keystore entry $keyStoreEntryAlias")

if (!keyStore.containsAlias(keyStoreEntryAlias)) {
throw IllegalArgumentException("Keystore does not contain alias $keyStoreEntryAlias")
throw IllegalArgumentException("Keystore does not contain entry with alias $keyStoreEntryAlias")
}

// Read the private key and certificate from the keystore.
Expand Down

0 comments on commit b15efa4

Please sign in to comment.