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

org.jpmml.model.MarkupException Maven / Gradle / Ivy

There is a newer version: 1.6.6
Show newest version
/*
 * Copyright (c) 2021 Villu Ruusmann
 */
package org.jpmml.model;

import org.dmg.pmml.PMMLObject;

abstract
public class MarkupException extends PMMLException {

	public MarkupException(String message){
		super(message);
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy