Skip to content

Commit b15efa4

Browse files
committed
feat: Improve exception message
1 parent af0aba4 commit b15efa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/app/revanced/library/ApkSigner.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ object ApkSigner {
154154
logger.fine("Reading key and certificate pair from keystore entry $keyStoreEntryAlias")
155155

156156
if (!keyStore.containsAlias(keyStoreEntryAlias)) {
157-
throw IllegalArgumentException("Keystore does not contain alias $keyStoreEntryAlias")
157+
throw IllegalArgumentException("Keystore does not contain entry with alias $keyStoreEntryAlias")
158158
}
159159

160160
// Read the private key and certificate from the keystore.

0 commit comments

Comments
 (0)