All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openl.rules.variation.VariationRuntimeException Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy