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