Package org.teiid.core
Class ComponentNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.teiid.core.TeiidException
-
- org.teiid.core.TeiidComponentException
-
- org.teiid.core.ComponentNotFoundException
-
- All Implemented Interfaces:
Serializable
public class ComponentNotFoundException extends TeiidComponentException
Exception which occurs if a system component could not be found by another component.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.teiid.core.TeiidException
code
-
-
Constructor Summary
Constructors Constructor Description ComponentNotFoundException()
No-Arg ConstructorComponentNotFoundException(String message)
Construct an instance with the message specified.ComponentNotFoundException(Throwable e, String message)
Construct an instance from a message and an exception to chain to this one.ComponentNotFoundException(BundleUtil.Event code, String message)
ComponentNotFoundException(BundleUtil.Event code, Throwable e, String message)
Construct an instance from a message and a code and an exception to chain to this one.
-
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
-
ComponentNotFoundException
public ComponentNotFoundException()
No-Arg Constructor
-
ComponentNotFoundException
public ComponentNotFoundException(String message)
Construct an instance with the message specified.- Parameters:
message
- A message describing the exception
-
ComponentNotFoundException
public ComponentNotFoundException(BundleUtil.Event code, String message)
-
ComponentNotFoundException
public ComponentNotFoundException(Throwable e, String message)
Construct an instance from a message and an exception to chain to this one.- Parameters:
e
- An exception to nest within this onemessage
- A message describing the exception
-
ComponentNotFoundException
public ComponentNotFoundException(BundleUtil.Event code, Throwable e, String message)
Construct an instance from a message and a code and an exception to chain to this one.- Parameters:
e
- An exception to nest within this onemessage
- A message describing the exceptioncode
- A code denoting the exception
-
-