// TODO: Implement
System.err.println("WARNING: log(" + message + ", " + e + ") called.");
}
public void redirect(String url) throws IOException {
FacesRedirector redirector = (FacesRedirector)request.getAttribute(FacesAction.REQUEST_REDIRECTOR_ATTRIBUTE);
if (redirector == null) {
throw new IOException("Can not redirect to <" + url + ">: Redirector missing.");
}
redirector.redirect(url);
}