Package org.teiid.core
Class TeiidException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.teiid.core.TeiidException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CryptoException,TeiidComponentException,TeiidProcessingException
public class TeiidException extends Exception
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
-
-
Constructor Summary
Constructors Constructor Description TeiidException()TeiidException(String message)TeiidException(Throwable e)TeiidException(Throwable e, String message)TeiidException(BundleUtil.Event code, String message)TeiidException(BundleUtil.Event code, Throwable t)TeiidException(BundleUtil.Event code, Throwable t, String message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCode()StringgetMessage()StringgetOriginalType()voidsetCode(String code)voidsetOriginalType(String originalType)-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
code
protected String code
-
-
Constructor Detail
-
TeiidException
public TeiidException()
-
TeiidException
public TeiidException(String message)
-
TeiidException
public TeiidException(BundleUtil.Event code, String message)
-
TeiidException
public TeiidException(BundleUtil.Event code, Throwable t, String message)
-
TeiidException
public TeiidException(BundleUtil.Event code, Throwable t)
-
TeiidException
public TeiidException(Throwable e)
-
-