org.openl.rules.variation.VariationRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.openl.rules.variation Show documentation
Show all versions of org.openl.rules.variation Show documentation
Classes and utilities to work with OpenL Rules Variations
package org.openl.rules.variation;
/**
* Variation API runtime exception
*
* @author Marat Kamalov
*
*/
@Deprecated
public class VariationRuntimeException extends RuntimeException {
private static final long serialVersionUID = 7155417820585354286L;
public VariationRuntimeException() {
super();
}
public VariationRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public VariationRuntimeException(String message) {
super(message);
}
public VariationRuntimeException(Throwable cause) {
super(cause);
}
}