Package org.teiid.api.exception.query
Class FunctionExecutionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.teiid.core.TeiidException
-
- org.teiid.core.TeiidProcessingException
-
- org.teiid.api.exception.query.ExpressionEvaluationException
-
- org.teiid.api.exception.query.FunctionExecutionException
-
- All Implemented Interfaces:
Serializable
public class FunctionExecutionException extends ExpressionEvaluationException
During processing, an invalid function was detected.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.teiid.core.TeiidException
code
-
-
Constructor Summary
Constructors Constructor Description FunctionExecutionException()
No-arg constructor required by Externalizable semantics.FunctionExecutionException(String message)
Construct an instance with the message specified.FunctionExecutionException(Throwable e)
FunctionExecutionException(Throwable e, String message)
Construct an instance from a message and an exception to chain to this one.FunctionExecutionException(BundleUtil.Event event, String message)
FunctionExecutionException(BundleUtil.Event event, Throwable e)
FunctionExecutionException(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
-
FunctionExecutionException
public FunctionExecutionException()
No-arg constructor required by Externalizable semantics.
-
FunctionExecutionException
public FunctionExecutionException(String message)
Construct an instance with the message specified.- Parameters:
message
- A message describing the exception
-
FunctionExecutionException
public FunctionExecutionException(Throwable e)
-
FunctionExecutionException
public FunctionExecutionException(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
-
FunctionExecutionException
public FunctionExecutionException(BundleUtil.Event event, Throwable e, String message)
-
FunctionExecutionException
public FunctionExecutionException(BundleUtil.Event event, String message)
-
FunctionExecutionException
public FunctionExecutionException(BundleUtil.Event event, Throwable e)
-
-