001    package org.nanocontainer.persistence;
002    
003    import org.picocontainer.PicoException;
004    
005    /**
006     * Base for all persistence related exceptions.
007     * 
008     * @version $Revision: $
009     */
010    public class PersistenceException extends PicoException {
011    
012            public PersistenceException(Throwable cause) {
013                    super(cause);
014            }
015    
016    }