feat: Improve exception message

This commit is contained in:
oSumAtrIX
2024-03-14 12:45:36 +01:00
parent af0aba4a8e
commit b15efa41f8

View File

@@ -154,7 +154,7 @@ object ApkSigner {
logger.fine("Reading key and certificate pair from keystore entry $keyStoreEntryAlias") logger.fine("Reading key and certificate pair from keystore entry $keyStoreEntryAlias")
if (!keyStore.containsAlias(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. // Read the private key and certificate from the keystore.