From b15efa41f8dc7d73865d0eab15be274b9ee3d7a3 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Thu, 14 Mar 2024 12:45:36 +0100 Subject: [PATCH] feat: Improve exception message --- src/main/kotlin/app/revanced/library/ApkSigner.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/library/ApkSigner.kt b/src/main/kotlin/app/revanced/library/ApkSigner.kt index 35d2091..b653fe4 100644 --- a/src/main/kotlin/app/revanced/library/ApkSigner.kt +++ b/src/main/kotlin/app/revanced/library/ApkSigner.kt @@ -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.