@Override
protected Object[] getData() {
String msg = null;
Exception cause = new Exception(msgs[1]);
SSLException excSSL = new SSLException(msgs[0]);
return new Object[] { new SSLException(msg), new SSLException(msgs[1]),
new SSLException(excSSL), new SSLException(cause),
new SSLException(msgs[1], cause) };
}