Package org.activiti.engine
Class ActivitiObjectNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.activiti.engine.ActivitiException
-
- org.activiti.engine.ActivitiObjectNotFoundException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JobNotFoundException
public class ActivitiObjectNotFoundException extends ActivitiException
An exception indicating that the object that is required or actioned on does not exist.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActivitiObjectNotFoundException(Class<?> objectClass)ActivitiObjectNotFoundException(String message)ActivitiObjectNotFoundException(String message, Class<?> objectClass)ActivitiObjectNotFoundException(String message, Class<?> objectClass, Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<?>getObjectClass()The class of the object that was not found.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ActivitiObjectNotFoundException
public ActivitiObjectNotFoundException(String message)
-
ActivitiObjectNotFoundException
public ActivitiObjectNotFoundException(String message, Class<?> objectClass)
-
ActivitiObjectNotFoundException
public ActivitiObjectNotFoundException(Class<?> objectClass)
-
-
Method Detail
-
getObjectClass
public Class<?> getObjectClass()
The class of the object that was not found. Contains the interface-class of the activiti-object that was not found.
-
-