
org.ontoware.rdf2go.exception.MalformedQueryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdf2go.api Show documentation
Show all versions of rdf2go.api Show documentation
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;
/**
* This runtime exception is thrown if a given query string could not be parsed
* and interpreted as a valid query string.
*
* Adapters should include help to refine the query to become valid, e.g. show
* which part of the query could not be parsed.
*
* @author voelkel
*
*/
public class MalformedQueryException extends ModelRuntimeException {
/**
*
*/
private static final long serialVersionUID = -810711996311935876L;
public MalformedQueryException() {
super();
}
public MalformedQueryException(Exception e) {
super(e);
}
public MalformedQueryException(String message, Exception e) {
super(message, e);
}
public MalformedQueryException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy