1package org.junit.experimental.max;
2
3/**
4 * Thrown when Max cannot read the MaxCore serialization
5 */
6public class CouldNotReadCoreException extends Exception {
7	private static final long serialVersionUID= 1L;
8
9	/**
10	 * Constructs
11	 */
12	public CouldNotReadCoreException(Throwable e) {
13		super(e);
14	}
15}
16