com.okworx.ilcd.validation.exception.InvalidProfileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ilcd-validation Show documentation
Show all versions of ilcd-validation Show documentation
A Java library for performing technical validation of data in ILCD data format.
package com.okworx.ilcd.validation.exception;
/**
* InvalidProfileException class.
*
* @author oliver.kusche
* @version $Id: $Id
*/
public class InvalidProfileException extends Exception {
private static final long serialVersionUID = 1109197146930082118L;
public InvalidProfileException() {
super();
}
public InvalidProfileException(String message) {
super(message);
}
public InvalidProfileException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy