Package org.imixs.workflow.exceptions
Class ModelException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.imixs.workflow.exceptions.WorkflowException
-
- org.imixs.workflow.exceptions.ModelException
-
- All Implemented Interfaces:
Serializable
public class ModelException extends WorkflowException
An ModelException should be thrown by a service component if a model entity is invalid or does not exist- Author:
- rsoika
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
INVALID_MODEL
static String
INVALID_MODEL_ENTRY
static String
UNDEFINED_MODEL_ENTRY
static String
UNDEFINED_MODEL_VERSION
-
Fields inherited from class org.imixs.workflow.exceptions.WorkflowException
errorCode, errorContext
-
-
Constructor Summary
Constructors Constructor Description ModelException(String aErrorCode, String message)
ModelException(String aErrorCode, String message, Exception e)
-
Method Summary
-
Methods inherited from class org.imixs.workflow.exceptions.WorkflowException
getErrorCode, getErrorContext, setErrorCode, setErrorContext
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
INVALID_MODEL
public static final String INVALID_MODEL
- See Also:
- Constant Field Values
-
INVALID_MODEL_ENTRY
public static final String INVALID_MODEL_ENTRY
- See Also:
- Constant Field Values
-
UNDEFINED_MODEL_ENTRY
public static final String UNDEFINED_MODEL_ENTRY
- See Also:
- Constant Field Values
-
UNDEFINED_MODEL_VERSION
public static final String UNDEFINED_MODEL_VERSION
- See Also:
- Constant Field Values
-
-