Test for SSLKeyException(String)
constructor Assertion:
constructs SSLKeyException with detail message msg. Parameter
msg
is not null.
SSLKeyException skE;
for (int i = 0; i < msgs.length; i++) {
skE = new SSLKeyException(msgs[i]);
assertEquals("getMessage() must return: ".concat(msgs[i]), skE.getMessage(), msgs[i]);
assertNull("getCause() must return null", skE.getCause());
}