log.warn(msg);
}
// For each exception, make sure the entire exception is sent to the client:
response.getErrorMessages().add(msg);
response.getExceptions().add(new ExceptionDto(t.getClass().getName(), msg, t.getStackTrace()));
}
}
response.setExecutionTime(System.currentTimeMillis() - begin);
if (log.isTraceEnabled()) {