Package org.eclipse.rdf4j.query
Class QueryEvaluationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.eclipse.rdf4j.common.exception.RDF4JException
-
- org.eclipse.rdf4j.query.QueryEvaluationException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
HTTPQueryEvaluationException,QueryInterruptedException,ValueExprEvaluationException
public class QueryEvaluationException extends RDF4JException
An exception indicating that the evaluation of a query failed.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description QueryEvaluationException()QueryEvaluationException(java.lang.String msg)Creates a new TupleQueryResultHandlerException.QueryEvaluationException(java.lang.String msg, java.lang.Throwable cause)Creates a new TupleQueryResultHandlerException wrapping another exception.QueryEvaluationException(java.lang.Throwable cause)Creates a new TupleQueryResultHandlerException wrapping another exception.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
QueryEvaluationException
public QueryEvaluationException()
-
QueryEvaluationException
public QueryEvaluationException(java.lang.String msg)
Creates a new TupleQueryResultHandlerException.- Parameters:
msg- An error message.
-
QueryEvaluationException
public QueryEvaluationException(java.lang.Throwable cause)
Creates a new TupleQueryResultHandlerException wrapping another exception.- Parameters:
cause- The cause of the exception.
-
QueryEvaluationException
public QueryEvaluationException(java.lang.String msg, java.lang.Throwable cause)Creates a new TupleQueryResultHandlerException wrapping another exception.- Parameters:
msg- An error message.cause- The cause of the exception.
-
-