Package org.teiid.api.exception.query
Class InvalidFunctionException
- 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.InvalidFunctionException
-
- All Implemented Interfaces:
Serializable
public class InvalidFunctionException 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 InvalidFunctionException()
No-arg constructor required by Externalizable semantics.InvalidFunctionException(String message)
Construct an instance with the message specified.InvalidFunctionException(Throwable e, String message)
Construct an instance from a message and an exception to chain to this one.InvalidFunctionException(BundleUtil.Event event)
InvalidFunctionException(BundleUtil.Event event, String msg)
InvalidFunctionException(BundleUtil.Event event, Throwable e)
InvalidFunctionException(BundleUtil.Event event, Throwable e, String msg)
-
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
-
InvalidFunctionException
public InvalidFunctionException()
No-arg constructor required by Externalizable semantics.
-
InvalidFunctionException
public InvalidFunctionException(String message)
Construct an instance with the message specified.- Parameters:
message
- A message describing the exception
-
InvalidFunctionException
public InvalidFunctionException(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
-
InvalidFunctionException
public InvalidFunctionException(BundleUtil.Event event)
-
InvalidFunctionException
public InvalidFunctionException(BundleUtil.Event event, Throwable e)
-
InvalidFunctionException
public InvalidFunctionException(BundleUtil.Event event, Throwable e, String msg)
-
InvalidFunctionException
public InvalidFunctionException(BundleUtil.Event event, String msg)
-
-