001    package org.junit.experimental.max;
002    
003    /**
004     * Thrown when Max cannot read the MaxCore serialization
005     */
006    public class CouldNotReadCoreException extends Exception {
007        private static final long serialVersionUID = 1L;
008    
009        /**
010         * Constructs
011         */
012        public CouldNotReadCoreException(Throwable e) {
013            super(e);
014        }
015    }