aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/experimental/max/CouldNotReadCoreException.java
blob: 03c3c8cb3e272dcec91891d4e330641d62526652 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.junit.experimental.max;

/**
 * Thrown when Max cannot read the MaxCore serialization
 */
public class CouldNotReadCoreException extends Exception {
	private static final long serialVersionUID= 1L;

	/**
	 * Constructs
	 */
	public CouldNotReadCoreException(Throwable e) {
		super(e);
	}
}