super( msg );
this.rootCause = rootCause;
super( msg ); this.rootCause = rootCause;
return rootCause;
if( rootCause != null ) { StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter( sw ); rootCause.printStackTrace( pw ); return super.toString() + "\n" + sw; } else { return super.toString(); }