Package org.teiid.api.exception.query
Class QueryMetadataException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.teiid.core.TeiidException
-
- org.teiid.core.TeiidComponentException
-
- org.teiid.api.exception.query.QueryMetadataException
-
- All Implemented Interfaces:
Serializable
public class QueryMetadataException extends TeiidComponentException
This exception is thrown when an error occurs while retrieving metadata from a query component metadata facade. TODO: this isn't really a component exception all of the time. missing entries in metadata are fine during resolving.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.teiid.core.TeiidException
code
-
-
Constructor Summary
Constructors Constructor Description QueryMetadataException()
No-arg constructor required by Externalizable semantics.QueryMetadataException(String message)
Construct an instance with the message specified.QueryMetadataException(Throwable e, String message)
Construct an instance from a message and an exception to chain to this one.QueryMetadataException(BundleUtil.Event event, String message)
QueryMetadataException(BundleUtil.Event event, Throwable e)
QueryMetadataException(BundleUtil.Event event, Throwable e, String message)
-
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
-
QueryMetadataException
public QueryMetadataException()
No-arg constructor required by Externalizable semantics.
-
QueryMetadataException
public QueryMetadataException(String message)
Construct an instance with the message specified.- Parameters:
message
- A message describing the exception
-
QueryMetadataException
public QueryMetadataException(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
-
QueryMetadataException
public QueryMetadataException(BundleUtil.Event event, Throwable e, String message)
-
QueryMetadataException
public QueryMetadataException(BundleUtil.Event event, Throwable e)
-
QueryMetadataException
public QueryMetadataException(BundleUtil.Event event, String message)
-
-