}
public void testGetCause()
{
RuntimeException re = new RuntimeException();
CascadingRuntimeException e = new CascadingRuntimeException( "msg",
re );
assertEquals( re, e.getCause() );
e = new CascadingRuntimeException( "msg", null );
assertNull( e.getCause() );
// default to jdk 1.3 cause (not that it seems to help,
// but it still makes sense)
/*Exception exc = new Exception("blah");
try