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

org.ontoware.rdfreactor.runtime.RDFDataException Maven / Gradle / Ivy

Go to download

RDFReactor creates domain-specific, type-safe Java classes which act as a view over domain-free, loosely typed RDF instances. This library needs to be shipped together with generated classes.

The newest version!
/*
 * Created on 17.04.2005
 *
 */
package org.ontoware.rdfreactor.runtime;

/**
 * A RDFDataException is thrown e.g. when doing a (single value) get, 
 * but there are multiple values for the property.
 * 
 * @author mvo 
 */
public class RDFDataException extends RuntimeException {

	/**
	 * Comment for serialVersionUID
	 */
	private static final long serialVersionUID = 3257565109529358387L;

	/**
	 * @param message
	 */
	public RDFDataException(String message) {
		super(message);
	}

	/**
	 * @param message
	 * @param cause
	 */
	public RDFDataException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy