001    package org.nanocontainer.persistence;
002    
003    public interface ExceptionHandler {
004    
005            public RuntimeException handle(Throwable ex);
006    
007    }