List details = e.getFault().getDetails();
if (details.size() > 0) {
for (Iterator iterator = details.iterator(); iterator.hasNext();) {
Object detail = iterator.next();
if (detail instanceof ZorroFault) {
ZorroFault ze = (ZorroFault) detail;
System.err.println("Sorry " + ze.getName() + " the following error was sent by the actor "
+ e.getFault().getFaultActor());
System.err.println("\"" + ze.getMessage() + "\"");
} else {
System.err.println(detail);
}
}
} else {