Package org.eclipse.rdf4j.query.resultio
Class UnsupportedQueryResultFormatException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.eclipse.rdf4j.query.resultio.UnsupportedQueryResultFormatException
-
- All Implemented Interfaces:
java.io.Serializable
public class UnsupportedQueryResultFormatException extends java.lang.RuntimeException
A Runtime exception indicating that a specific query result format is not supported.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description UnsupportedQueryResultFormatException(java.lang.String msg)
Creates a new UnsupportedRDFormatException.UnsupportedQueryResultFormatException(java.lang.String msg, java.lang.Throwable cause)
Creates a new UnsupportedRDFormatException wrapping another exception.UnsupportedQueryResultFormatException(java.lang.Throwable cause)
Creates a new UnsupportedRDFormatException.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UnsupportedQueryResultFormatException
public UnsupportedQueryResultFormatException(java.lang.String msg)
Creates a new UnsupportedRDFormatException.- Parameters:
msg
- An error message.
-
UnsupportedQueryResultFormatException
public UnsupportedQueryResultFormatException(java.lang.Throwable cause)
Creates a new UnsupportedRDFormatException.- Parameters:
cause
- The cause of the exception.
-
UnsupportedQueryResultFormatException
public UnsupportedQueryResultFormatException(java.lang.String msg, java.lang.Throwable cause)
Creates a new UnsupportedRDFormatException wrapping another exception.- Parameters:
msg
- An error message.cause
- The cause of the exception.
-
-