When i deploy a composer application in tomcat i am receving the below error:
org.apache.jasper.JasperException: Unable to compile class for JSP:
An error occurred at line: 32 in the jsp file: /src/../include/backend.jspf
The method printStackTrace() is undefined for the type Exception
29:
30: } catch (Exception e) {
31:
32: e.printStackTrace();
33: String msg = e.getMessage();
34: if (null != msg){
35: msg = msg.replace('"', '\'');
An error occurred at line: 33 in the jsp file: /src/../include/backend.jspf
The method getMessage() is undefined for the type Exception
30: } catch (Exception e) {
31:
32: e.printStackTrace();
33: String msg = e.getMessage();
34: if (null != msg){
35: msg = msg.replace('"', '\'');
36: }
Please advice