Skip to content

Commit ed5dffa

Browse files
Add throws
1 parent 3a1f14e commit ed5dffa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

closed/test/jdk/openj9/internal/security/TestConstraintsSuccess.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
public class TestConstraintsSuccess {
5858

59-
private static void getInstances() throws NoSuchAlgorithmException {
59+
private static void getInstances() throws Exception {
6060
CertificateFactory.getInstance("X.509");
6161
CertPathValidator.getInstance("PKIX");
6262
MessageDigest.getInstance("SHA-256");
@@ -83,7 +83,7 @@ private static void getInstances() throws NoSuchAlgorithmException {
8383
}
8484

8585
@Test
86-
public void runWithConstraints() {
86+
public void runWithConstraints() throws Exception {
8787
OutputAnalyzer outputAnalyzer = ProcessTools.executeTestJava(
8888
"-Dsemeru.customprofile=RestrictedSecurity.TestConstraints.Version",
8989
"-Djava.security.properties=" + System.getProperty("test.src") + "/constraints-java.security",
@@ -93,7 +93,7 @@ public void runWithConstraints() {
9393
outputAnalyzer.shouldHaveExitValue(0);
9494
}
9595

96-
public static void main(String[] args) throws NoSuchAlgorithmException {
96+
public static void main(String[] args) throws Exception {
9797
getInstances();
9898
}
9999
}

0 commit comments

Comments
 (0)