if (Configuration.DEBUG) {
e.printStackTrace();
}
String temp = e.getMessage();
if (temp != null) {
throw new WikiModelContentException("<span class=\"error\">Exception: " + temp + "</span>", e);
}
throw new WikiModelContentException("<span class=\"error\">Exception: " + e.getClass().getSimpleName() + "</span>", e);
}
return content;
}
return null;