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