com.ibm.itim.workflow.query
Class InvalidQueryException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--com.ibm.itim.workflow.model.WorkflowException
|
+--com.ibm.itim.workflow.query.InvalidQueryException
- All Implemented Interfaces:
- java.io.Serializable
- public class InvalidQueryException
- extends WorkflowException
This class is used for reporting an invalid query.
- See Also:
- Serialized Form
Constructor Summary |
InvalidQueryException(java.lang.String errCode)
Constructs with an error code. |
InvalidQueryException(java.lang.String errCode,
java.lang.String exMsg)
Constructs with an error code and an extra message string. |
InvalidQueryException(java.lang.String errCode,
java.lang.Throwable cause)
Constructs with an error code and the cause exception. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, toString |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
InvalidQueryException
public InvalidQueryException(java.lang.String errCode)
- Constructs with an error code.
InvalidQueryException
public InvalidQueryException(java.lang.String errCode,
java.lang.String exMsg)
- Constructs with an error code and an extra message string.
- Parameters:
errCode
- Error code identifying the problem.exMsg
- Additional information in a String.
InvalidQueryException
public InvalidQueryException(java.lang.String errCode,
java.lang.Throwable cause)
- Constructs with an error code and the cause exception.
- Parameters:
errCode
- Error code identifying the problem.cause
- Throwable representing the exception causing this exception.