{@inheritDoc} Calling sendError with a status code of 103 differs from the usual behavior. Sending 103 will trigger the container to send a "103 Early Hints" informational response including all current headers. The application can continue to use the request and response after call
(int status)
| 1173 | * Starting with Tomcat 12, applications should use {@link #sendEarlyHints}. |
| 1174 | */ |
| 1175 | @Override |
| 1176 | public void sendError(int status) throws IOException { |
| 1177 | sendError(status, null); |
| 1178 | } |
| 1179 | |
| 1180 | |
| 1181 | /** |
no test coverage detected