"New message",
"Long message for Exception. Long message for Exception. Long message for Exception." };
protected Object[] getData() {
Exception cause = new Exception(msgs[1]);
CertificateEncodingException dExc = new CertificateEncodingException(msgs[0], cause);
String msg = null;
Throwable th = null;
return new Object[] { new CertificateEncodingException(), new CertificateEncodingException(msg),
new CertificateEncodingException(msgs[1]),
new CertificateEncodingException(new Throwable()), new CertificateEncodingException(th),
new CertificateEncodingException(msgs[1], dExc) };
}