]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/IncompatibleTestDataException.java
Simplify ANt-Spring bridge
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / core / test / IncompatibleTestDataException.java
1 package org.argeo.slc.core.test;
2
3 import org.argeo.slc.core.SlcException;
4
5 /**
6 * Exception to throw when a test definition cannot interpret the provided test
7 * data.
8 */
9 public class IncompatibleTestDataException extends SlcException {
10 static final long serialVersionUID = 1l;
11
12 public IncompatibleTestDataException(TestData testData,
13 TestDefinition testDefinition) {
14 super("TestData " + testData.getClass()
15 + " is not compatible with TestDefinition "
16 + testDefinition.getClass());
17 }
18 }