StringBuffer buffer = new StringBuffer();
Exception nestedException;
for (int x=0; x<m_nestedExceptions.size(); x++) {
nestedException = (Exception) m_nestedExceptions.get(x);
buffer.append(Helper.cr());
buffer.append('(");
buffer.append(x + 1);
buffer.append(". ");
buffer.append(nestedException.getMessage());
buffer.append(')");
}
return buffer.toString();