Package org.teiid.core
Class TeiidComponentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.teiid.core.TeiidException
-
- org.teiid.core.TeiidComponentException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BlockedException
,ComponentNotFoundException
,QueryMetadataException
public class TeiidComponentException extends TeiidException
Exception which occurs if an error occurs within the server that is not business-related. For instance, if a service or bean is not available or communication fails.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.teiid.core.TeiidException
code
-
-
Constructor Summary
Constructors Constructor Description TeiidComponentException()
TeiidComponentException(String message)
Construct an instance with the message specified.TeiidComponentException(Throwable e)
Construct an instance with a linked exception specified.TeiidComponentException(Throwable e, String message)
TeiidComponentException(BundleUtil.Event code, String message)
TeiidComponentException(BundleUtil.Event code, Throwable e)
TeiidComponentException(BundleUtil.Event code, 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
-
TeiidComponentException
public TeiidComponentException()
-
TeiidComponentException
public TeiidComponentException(String message)
Construct an instance with the message specified.- Parameters:
message
- A message describing the exception
-
TeiidComponentException
public TeiidComponentException(Throwable e)
Construct an instance with a linked exception specified.- Parameters:
e
- An exception to chain to this exception
-
TeiidComponentException
public TeiidComponentException(BundleUtil.Event code, String message)
-
TeiidComponentException
public TeiidComponentException(BundleUtil.Event code, Throwable e, String message)
-
TeiidComponentException
public TeiidComponentException(BundleUtil.Event code, Throwable e)
-
-