001 package org.tynamo.exceptionpage.services; 002 003 import java.util.Map; 004 005 import org.apache.tapestry5.services.ExceptionReporter; 006 007 public interface ExceptionHandler { 008 public Map<Class<? extends RuntimeException>, Class<? extends ExceptionReporter>> getConfiguration(); 009 010 }