Class SPARQLExtException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.jena.shared.JenaException
-
- org.apache.jena.sparql.ARQException
-
- fr.mines_stetienne.ci.sparql_generate.SPARQLExtException
-
- All Implemented Interfaces:
java.io.Serializable
public class SPARQLExtException extends ARQException
The SPARQL-Generate exception class.- Author:
- Maxime Lefrançois
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SPARQLExtException()
Constructs a new SPARQL-Generate Exception.SPARQLExtException(java.lang.String message)
Constructs a new SPARQL-Generate Exception with the specified detail message.SPARQLExtException(java.lang.String message, java.lang.Throwable cause)
Constructs a new SPARQL-Generate Exception with the specified detail message and cause.SPARQLExtException(java.lang.Throwable cause)
Constructs a new SPARQL-Generate Exception with the specified cause.
-
-
-
Constructor Detail
-
SPARQLExtException
public SPARQLExtException(java.lang.String message, java.lang.Throwable cause)
Constructs a new SPARQL-Generate Exception with the specified detail message and cause.Note that the detail message associated with cause is not automatically incorporated in this exception's detail message.
- Parameters:
message
- - the message.cause
- - the cause.
-
SPARQLExtException
public SPARQLExtException()
Constructs a new SPARQL-Generate Exception.
-
SPARQLExtException
public SPARQLExtException(java.lang.Throwable cause)
Constructs a new SPARQL-Generate Exception with the specified cause.- Parameters:
cause
- - the cause.
-
SPARQLExtException
public SPARQLExtException(java.lang.String message)
Constructs a new SPARQL-Generate Exception with the specified detail message.Note that the detail message associated with cause is not automatically incorporated in this exception's detail message.
- Parameters:
message
- - the message.
-
-