Hi , I am using struts struts-1.2.4 . I am not able to catch the exception which are caused whenever there is a problem in laying the tiles .
For Eg in the below code , if ftpStatus.jsp gives a error , I do not get the exception either in the browser or on Tomcat console . Ideally , I guess the exception should be shown on the screen itself in the place where the tparticular tile is rendered . Any pointers ....?? ---------------------------------------- <tiles:insert page="/templates/classicLayout.jsp" flush="true"> <tiles:put name="title" value="DocprepRelease" /> <tiles:put name="header" value="/common/header.jsp" /> <tiles:put name="footer" value="/common/footer.jsp" /> <tiles:put name="menu" value="/common/menu.jsp" /> <tiles:put name="body" value="/body/ftpStatus.jsp" /> </tiles:insert> ------------------------------------------- Regards Nimish