public void forward(final String view) {
try {
isAborted = true;
getRequest().getRequestDispatcher(view).forward(getRequest(), getResponse());
} catch (final IOException e) {
throw new DispatchException(e);
} catch (final ServletException e) {
throw new DispatchException(e);
}
}