fr.insee.eno.exception.EnoParametersException 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;
/**
* EnoParametersException which is thrown when a error was occured during validation of the parameters.
*/
public class EnoParametersException extends RuntimeException {
private static final long serialVersionUID = 1L;
public EnoParametersException(String message) {
super(message);
}
}