fr.insee.eno.exception.EnoGenerationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eno-core Show documentation
Show all versions of eno-core Show documentation
Eno is a tool that generates survey questionnaires starting from their formal description in DDI
The newest version!
package fr.insee.eno.exception;
/**
* EnoGenerationException which is thrown when a error was occured during an xslt tranformation of Eno.
*/
public class EnoGenerationException extends RuntimeException {
private static final long serialVersionUID = 1L;
public EnoGenerationException(String message) {
super(message);
}
}