blob: ff1a0db40e67ef4ffe28840459a84fb8f5e4a3c2 [file] [log] [blame]
// Copyright 2006, 2008 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package org.apache.tapestry5.internal.services;
import org.apache.tapestry5.internal.structure.Page;
import org.apache.tapestry5.services.ExceptionReporter;
import org.apache.tapestry5.services.RequestExceptionHandler;
import org.slf4j.Logger;
import java.io.IOException;
/**
* Default implementation of {@link RequestExceptionHandler} that displays the standard ExceptionReport page. The page
* must implement the {@link ExceptionReporter} interface.
*/
public class DefaultRequestExceptionHandler implements RequestExceptionHandler
{
private final RequestPageCache pageCache;
private final PageResponseRenderer renderer;
private final Logger logger;
public DefaultRequestExceptionHandler(RequestPageCache pageCache, PageResponseRenderer renderer, Logger logger)
{
this.pageCache = pageCache;
this.renderer = renderer;
this.logger = logger;
}
public void handleRequestException(Throwable exception) throws IOException
{
logger.error(ServicesMessages.requestException(exception), exception);
Page page = pageCache.get("ExceptionReport");
ExceptionReporter rootComponent = (ExceptionReporter) page.getRootComponent();
// Let the page set up for the new exception.
rootComponent.reportException(exception);
renderer.renderPageResponse(page);
}
}