1 16 17 package org.apache.commons.latka.event; 18 19 import org.apache.commons.latka.http.Request; 20 import org.apache.commons.latka.http.Response; 21 22 29 public class RequestErrorEvent extends BaseRequestEvent { 30 31 34 private Throwable _t = null; 36 42 public RequestErrorEvent(Request request, Response response, Throwable t) { 43 super(request, response); 44 _t = t; 45 } 46 47 48 52 public Throwable getError() { 53 return _t; 54 } 55 } 56 | Popular Tags |