/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ |
H A D | LifecycleException.java | 96 * Construct a new LifecycleException for the specified throwable. 98 * @param throwable Throwable that caused this exception 100 public LifecycleException(Throwable throwable) { argument 101 super(throwable); 107 * and throwable. 110 * @param throwable Throwable that caused this exception 112 public LifecycleException(String message, Throwable throwable) { argument 113 super(message, throwable);
|
H A D | Logger.java | 182 * @param throwable The <code>Throwable</code> error or exception 184 public void log(String message, Throwable throwable); argument 206 * @param throwable The <code>Throwable</code> error or exception 209 public void log(String message, Throwable throwable, int verbosity); argument
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/ |
H A D | ClientAbortException.java | 96 * Construct a new ClientAbortException for the specified throwable. 98 * @param throwable Throwable that caused this exception 100 public ClientAbortException(Throwable throwable) { argument 101 super(throwable); 107 * and throwable. 110 * @param throwable Throwable that caused this exception 112 public ClientAbortException(String message, Throwable throwable) { argument 113 super(message, throwable);
|
H A D | CoyoteAdapter.java | 905 * @param throwable Associated exception 907 protected void log(String message, Throwable throwable) { argument 908 log.log(Level.SEVERE, message, throwable);
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/pool/ |
H A D | PoolException.java | 55 Throwable throwable = null; field in class:PoolException 65 public PoolException(String message, Throwable throwable) { argument 67 this.throwable = throwable; 71 return this.throwable; 83 if (throwable != null) { 85 throwable.printStackTrace(pw);
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/logger/ |
H A D | LoggerBase.java | 174 * @param throwable The <code>Throwable</code> error or exception 176 public void log(String msg, Throwable throwable) { argument 177 write(msg, throwable, ERROR); 200 * @param throwable The <code>Throwable</code> error or exception 203 public void log(String message, Throwable throwable, int verbosity) { argument 204 write(message, throwable, verbosity); 216 protected void write(String msg, Throwable throwable, int verbosity) { argument 220 throwable.printStackTrace(writer); 222 if (throwable instanceof LifecycleException) 223 rootCause = ((LifecycleException) throwable) [all...] |
/glassfish-3.1.2/common/glassfish-api/src/main/java/com/sun/appserv/server/ |
H A D | LifecycleEventContext.java | 87 * @param throwable the <code>Throwable</code> error 91 public void log(String message, Throwable throwable); argument
|
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/ |
H A D | LifecycleEventContextImpl.java | 110 * @param throwable the <code>Throwable</code> error 113 public void log(String message, Throwable throwable) { argument 114 logger.log(Level.INFO, message, throwable);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/ |
H A D | StandardWrapperValve.java | 114 Throwable throwable = null; 222 throwable = e; 228 throwable = e; 239 throwable = e; 244 throwable = e; 286 throwable = e; 291 throwable = e; 296 // throwable = e; 326 // Do not save exception in 'throwable', because we 334 throwable [all...] |
H A D | StandardHostValve.java | 219 throwable(request, response, t); 262 * @param throwable The throwable that occurred (which possibly wraps 265 protected void throwable(Request request, Response response, argument 266 Throwable throwable) { 271 Throwable realError = throwable; 275 realError = throwable; 288 ErrorPage errorPage = findErrorPage(context, throwable); 289 if ((errorPage == null) && (realError != throwable)) { 294 dispatchToErrorPage(request, response, errorPage, throwable, 630 dispatchToErrorPage(Request request, Response response, ErrorPage errorPage, Throwable throwable, Throwable realError, int statusCode) argument [all...] |
H A D | ApplicationContextFacade.java | 381 public void log(String message, Throwable throwable) { argument 384 new Object[]{message, throwable}); 386 context.log(message, throwable);
|
H A D | ApplicationContext.java | 469 * @param throwable Exception to be reported 471 public void log(String message, Throwable throwable) { argument 472 context.log(message, throwable);
|
H A D | ContainerBase.java | 1555 * @param throwable Related exception 1557 protected void log(String message, Throwable throwable) { argument 1561 logger.log(logName() + ": " + message, throwable); 1563 log.log(Level.SEVERE, message, throwable);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/valves/ |
H A D | ErrorReportValve.java | 161 Throwable throwable = 169 if (throwable != null) { 226 report(request, response, throwable); 255 * @param throwable The exception that occurred (which possibly wraps 259 Throwable throwable) 282 if (throwable != null) { 284 if (throwable instanceof ServletException) 285 rootCause = ((ServletException) throwable).getRootCause(); 320 throwable, rootCause, 325 * If throwable i 258 report(Request request, Response response, Throwable throwable) argument 397 makeErrorPage(int statusCode, String message, Throwable throwable, Throwable rootCause, String report, HttpServletResponse response) argument [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ssi/ |
H A D | SSIExternalResolver.java | 118 public void log(String message, Throwable throwable); argument
|
H A D | SSIMediator.java | 363 public void log(String message, Throwable throwable) { argument 364 ssiExternalResolver.log(message, throwable);
|
H A D | SSIServletExternalResolver.java | 120 public void log(String message, Throwable throwable) { argument 124 if (throwable != null) { 125 context.log(message, throwable);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/logger/ |
H A D | LoggerBase.java | 337 * @param throwable The <code>Throwable</code> error or exception 339 public void log(String msg, Throwable throwable) { argument 344 throwable.printStackTrace(writer); 346 if (throwable instanceof LifecycleException) 347 rootCause = ((LifecycleException) throwable).getCause(); 348 else if (throwable instanceof ServletException) 349 rootCause = ((ServletException) throwable).getRootCause(); 383 * @param throwable The <code>Throwable</code> error or exception 386 public void log(String message, Throwable throwable, int verbosity) { argument 389 log(message, throwable); [all...] |
/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployment/client/ |
H A D | DFDeploymentStatus.java | 226 * @param throwable 228 public void setStageException(Throwable throwable) { argument 229 if (throwable != null) { 230 stageException = new Throwable(throwable.toString()); 231 stageException.setStackTrace(throwable.getStackTrace());
|
/glassfish-3.1.2/flashlight/framework/src/main/java/org/glassfish/flashlight/transformer/ |
H A D | ProbeProviderClassFileTransformer.java | 224 Throwable throwable = null; 241 // need throwable, not Exception - it may throw an Error! 254 throwable = t; 264 else if (throwable != null) 265 logger.log(Level.WARNING, "Error while getting Instrumentation object from ProbeAgentmain", throwable);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/ |
H A D | RequestUtil.java | 595 Throwable throwable = null; 599 throwable = t; 604 if (throwable != null) { 605 uee.initCause(throwable);
|
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/ |
H A D | GrizzlyProxy.java | 337 public void onException(Throwable throwable) { 338 future.setResult(new Result<Thread>(throwable));
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/ |
H A D | ContextFacade.java | 219 public void log(String message, Throwable throwable) { argument 220 context.log(message, throwable);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/loader/ |
H A D | StandardClassLoader.java | 1062 * @param throwable Exception to be logged 1064 private void log(String message, Throwable throwable) { argument 1067 log.log(Level.FINE, "StandardClassLoader: " + message, throwable);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/session/ |
H A D | ManagerBase.java | 1054 * @param throwable Associated exception 1057 protected void log(String message, Throwable throwable) { argument 1058 log.log(Level.INFO, message, throwable);
|