public void renderXML (ContentHandler out) throws PortalException {
RuntimeException runtimeException =
new RuntimeException("Deepest exception is a RuntimeException.");
PortalException portalException =
new PortalException("Middle exception is a PortalException.",
runtimeException);
PortalException outerException =
new PortalException("Outer exception is also a PortalException",
portalException);
throw outerException;
}