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