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

org.jpmml.manager.InvalidFeatureException Maven / Gradle / Ivy

There is a newer version: 1.1.20
Show newest version
/*
 * Copyright (c) 2012 University of Tartu
 */
package org.jpmml.manager;

import org.dmg.pmml.*;

/**
 * Signals that the specified PMML content is invalid.
 */
public class InvalidFeatureException extends PMMLException {

	@Deprecated
	public InvalidFeatureException(){
		super();
	}

	@Deprecated
	public InvalidFeatureException(String message){
		super(message);
	}

	public InvalidFeatureException(PMMLObject context){
		super(context);
	}

	public InvalidFeatureException(String message, PMMLObject context){
		super(message, context);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy