*/
public static NGrinderRuntimeException processException(String message, Throwable t) {
if (t instanceof NGrinderRuntimeException) {
throw (NGrinderRuntimeException) sanitize(t);
} else {
throw new NGrinderRuntimeException(message, sanitize(t), true);
}
}