Searched defs:rootCause (Results 1 - 2 of 2) sorted by relevance

/glassfish-3.1.2/common/glassfish-api/src/main/java/com/sun/appserv/server/
H A DServerLifecycleException.java68 * @param rootCause Throwable that caused this exception
70 public ServerLifecycleException(Throwable rootCause) { argument
71 super(rootCause);
79 * @param rootCause Throwable that caused this exception
81 public ServerLifecycleException(String message, Throwable rootCause) { argument
82 super(message, rootCause);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/valves/
H A DErrorReportValve.java280 Throwable rootCause = null;
285 rootCause = ((ServletException) throwable).getRootCause();
320 throwable, rootCause,
400 Throwable rootCause,
511 while (rootCause != null) {
514 .getPartialServletStackTrace(rootCause);
518 sb.append(sm.getString("errorReportValve.rootCause"));
521 sb.append(sm.getString("errorReportValve.rootCause",
534 sb.append(RequestUtil.filter(String.valueOf(rootCause)));
541 rootCause
397 makeErrorPage(int statusCode, String message, Throwable throwable, Throwable rootCause, String report, HttpServletResponse response) argument
[all...]

Completed in 25 milliseconds