Searched defs:sendError (Results 1 - 8 of 8) sorted by relevance
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/comm/ |
H A D | MessageExchangeTransport.java | 78 public void sendError(Exception exception); method in interface:MessageExchangeTransport
|
H A D | MessageExchangeTransportImpl.java | 92 public void sendError(Exception exception) { method in class:MessageExchangeTransportImpl
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/ |
H A D | ApplicationHttpResponse.java | 277 * Disallow <code>sendError()</code> calls on an included response. 283 public void sendError(int sc) throws IOException { method in class:ApplicationHttpResponse 286 ((HttpServletResponse) getResponse()).sendError(sc); 292 * Disallow <code>sendError()</code> calls on an included response. 299 public void sendError(int sc, String msg) throws IOException { method in class:ApplicationHttpResponse 302 ((HttpServletResponse) getResponse()).sendError(sc, msg);
|
H A D | DummyResponse.java | 158 public void sendError(int status) throws IOException {} method in class:DummyResponse 159 public void sendError(int status, String message) throws IOException {} method in class:DummyResponse
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/filter/ |
H A D | CachingResponseWrapper.java | 327 public void sendError(int status) throws IOException { method in class:CachingResponseWrapper 328 super.sendError(status); 343 public void sendError(int status, String message) throws IOException { method in class:CachingResponseWrapper 344 super.sendError(status, message);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/ |
H A D | ResponseFacade.java | 479 public void sendError(int sc, String msg) throws IOException { method in class:ResponseFacade 493 response.sendError(sc, msg); 497 public void sendError(int sc) throws IOException { method in class:ResponseFacade 511 response.sendError(sc);
|
H A D | Response.java | 613 * not an error report returned using sendError or triggered by an 988 * Return the error message that was set with <code>sendError()</code> 1312 public void sendError(int status) method in class:Response 1314 sendError(status, null); 1328 public void sendError(int status, String message) method in class:Response 1333 (sm.getString("coyoteResponse.sendError.ise"));
|
/glassfish-3.1.2/webservices/soap-tcp/src/main/java/org/glassfish/webservices/transport/tcp/ |
H A D | ServletFakeArtifactSet.java | 411 public void sendError(final int i, final String string) throws IOException { method in class:ServletFakeArtifactSet.FakeServletHttpResponse 414 public void sendError(final int i) throws IOException { method in class:ServletFakeArtifactSet.FakeServletHttpResponse
|
Completed in 25 milliseconds