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

org.ontoware.rdf2go.exception.SyntaxNotSupportedException Maven / Gradle / Ivy

Go to download

RDF2go is an implementation-independent Java API with the design goals: portability (hence the name), performance and ease of implementation. This project was started at FZI Forschungszentrum Informatik Karlsruhe, Germany - www.fzi.de

The newest version!
/**
 * LICENSE INFORMATION
 *
 * Copyright 2005-2008 by FZI (http://www.fzi.de).
 * Licensed under a BSD license (http://www.opensource.org/licenses/bsd-license.php)
 *  = Max Völkel
 *  = FZI Forschungszentrum Informatik Karlsruhe, Karlsruhe, Germany
 *  = 2010
 *
 * Further project information at http://semanticweb.org/wiki/RDF2Go
 */

package org.ontoware.rdf2go.exception;

/**
 * A runtime exception thrown if a method offers a choice of syntaxes, but the
 * chosen syntax is not supported by the adapter.
 * 
 * @author voelkel
 * 
 */
public class SyntaxNotSupportedException extends ModelRuntimeException {

	/**
	 * 
	 */
	private static final long serialVersionUID = -5225692503846334223L;

	public SyntaxNotSupportedException() {
		super();
	}

	public SyntaxNotSupportedException(Exception e) {
		super(e);
	}

	public SyntaxNotSupportedException(String message, Exception e) {
		super(message, e);
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy