super(msg);
super(); this.rootCause = rootCause;
Returns descriptive text on the cause of this exception. String msg = super.getMessage(); if (msg == null && rootCause != null) { msg = rootCause.getMessage(); } return msg;
String msg = super.getMessage(); if (msg == null && rootCause != null) { msg = rootCause.getMessage(); } return msg;