Package org.teiid.api.exception.query
Class QueryPlannerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.teiid.core.TeiidException
-
- org.teiid.core.TeiidProcessingException
-
- org.teiid.api.exception.query.QueryProcessingException
-
- org.teiid.api.exception.query.QueryPlannerException
-
- All Implemented Interfaces:
Serializable
public class QueryPlannerException extends QueryProcessingException
This exception is thrown when an error occurs while planning the query. This probably indicates a problem with the query that could not be determined during query resolution or query validation.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.teiid.core.TeiidException
code
-
-
Constructor Summary
Constructors Constructor Description QueryPlannerException()
No-arg constructor required by Externalizable semantics.QueryPlannerException(String message)
Construct an instance with the message specified.QueryPlannerException(Throwable e)
QueryPlannerException(Throwable e, String message)
Construct an instance from a message and an exception to chain to this one.QueryPlannerException(BundleUtil.Event event, String msg)
QueryPlannerException(BundleUtil.Event event, Throwable e)
QueryPlannerException(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
-
QueryPlannerException
public QueryPlannerException()
No-arg constructor required by Externalizable semantics.
-
QueryPlannerException
public QueryPlannerException(String message)
Construct an instance with the message specified.- Parameters:
message
- A message describing the exception
-
QueryPlannerException
public QueryPlannerException(Throwable e)
-
QueryPlannerException
public QueryPlannerException(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
-
QueryPlannerException
public QueryPlannerException(BundleUtil.Event event, Throwable e)
-
QueryPlannerException
public QueryPlannerException(BundleUtil.Event event, Throwable e, String msg)
-
QueryPlannerException
public QueryPlannerException(BundleUtil.Event event, String msg)
-
-