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

org.jpmml.model.InvalidMarkupException 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;

/**
 * 

* Thrown to indicate that the class model object is not valid. *

*/ abstract public class InvalidMarkupException extends MarkupException { public InvalidMarkupException(String message){ super(message); } public InvalidMarkupException(String message, PMMLObject context){ super(message, context); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy