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