Package org.teiid.api.exception.query
Class QueryProcessingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.teiid.core.TeiidException
-
- org.teiid.core.TeiidProcessingException
-
- org.teiid.api.exception.query.QueryProcessingException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FunctionMetadataException
,QueryParserException
,QueryPlannerException
,QueryResolverException
,QueryValidatorException
public class QueryProcessingException extends TeiidProcessingException
This exception is thrown when an error occurs while retrieving metadata from a query component metadata facade.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.teiid.core.TeiidException
code
-
-
Constructor Summary
Constructors Constructor Description QueryProcessingException()
No-arg constructor required by Externalizable semantics.QueryProcessingException(String message)
Construct an instance with the message specified.QueryProcessingException(Throwable e)
QueryProcessingException(Throwable e, String message)
Construct an instance from a message and an exception to chain to this one.QueryProcessingException(BundleUtil.Event event, String msg)
QueryProcessingException(BundleUtil.Event event, Throwable e)
QueryProcessingException(BundleUtil.Event event, Throwable e, String msg)
-
Method Summary
-
Methods inherited from class org.teiid.core.TeiidException
getCode, getMessage, getOriginalType, setCode, setOriginalType
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
QueryProcessingException
public QueryProcessingException()
No-arg constructor required by Externalizable semantics.
-
QueryProcessingException
public QueryProcessingException(String message)
Construct an instance with the message specified.- Parameters:
message
- A message describing the exception
-
QueryProcessingException
public QueryProcessingException(Throwable e)
-
QueryProcessingException
public QueryProcessingException(Throwable e, String message)
Construct an instance from a message and an exception to chain to this one.- Parameters:
message
- A message describing the exceptione
- An exception to nest within this one
-
QueryProcessingException
public QueryProcessingException(BundleUtil.Event event, Throwable e)
-
QueryProcessingException
public QueryProcessingException(BundleUtil.Event event, Throwable e, String msg)
-
QueryProcessingException
public QueryProcessingException(BundleUtil.Event event, String msg)
-
-