blob: 03c3c8cb3e272dcec91891d4e330641d62526652 [file] [log] [blame]
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);
}
}