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:
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(String message)
Constructs a new SPARQL-Generate Exception with the specified detail message.SPARQLExtException(String message, Throwable cause)
Constructs a new SPARQL-Generate Exception with the specified detail message and cause.SPARQLExtException(Throwable cause)
Constructs a new SPARQL-Generate Exception with the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SPARQLExtException
public SPARQLExtException(String message, 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(Throwable cause)
Constructs a new SPARQL-Generate Exception with the specified cause.- Parameters:
cause
- - the cause.
-
SPARQLExtException
public SPARQLExtException(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.
-
-