diff options
| author | J08nY | 2018-02-10 19:59:41 +0100 |
|---|---|---|
| committer | J08nY | 2018-02-10 19:59:41 +0100 |
| commit | 22e4cfaf40a259be007bddc7b5cd765390de1c11 (patch) | |
| tree | 7b7429f1215ee9e47efa4b7b2eb688c88b1cc22a /src/cz/crcs/ectester/standalone/ECTesterStandalone.java | |
| parent | ab80803c561d05407144ffb5f1c4d45d698fec0b (diff) | |
| download | ECTester-22e4cfaf40a259be007bddc7b5cd765390de1c11.tar.gz ECTester-22e4cfaf40a259be007bddc7b5cd765390de1c11.tar.zst ECTester-22e4cfaf40a259be007bddc7b5cd765390de1c11.zip | |
Handle exceptions in Tests and TestSuites grafeully.
Diffstat (limited to 'src/cz/crcs/ectester/standalone/ECTesterStandalone.java')
| -rw-r--r-- | src/cz/crcs/ectester/standalone/ECTesterStandalone.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cz/crcs/ectester/standalone/ECTesterStandalone.java b/src/cz/crcs/ectester/standalone/ECTesterStandalone.java index 5f335b9..498fce1 100644 --- a/src/cz/crcs/ectester/standalone/ECTesterStandalone.java +++ b/src/cz/crcs/ectester/standalone/ECTesterStandalone.java @@ -120,7 +120,7 @@ public class ECTesterStandalone { } catch (NoSuchAlgorithmException nsaex) { System.err.println("Algorithm not supported by the selected library: " + nsaex.getMessage()); nsaex.printStackTrace(); - } catch (InvalidKeyException | SignatureException | TestException e) { + } catch (InvalidKeyException | SignatureException e) { e.printStackTrace(); } } |
