001    /*
002     @license.text@
003      */
004    package biz.hammurapi.util;
005    
006    import java.lang.reflect.Method;
007    
008    /**
009     * @author Pavel Vlasov
010     *
011     * @version $Revision: 1.1 $
012     */
013    public interface VisitorExceptionSink {
014            void consume(DispatchingVisitor dispatcher, Object visitor, Method method, Object visitee, Exception e);
015    }