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