Uses of Class
org.camunda.bpm.engine.ProcessEngineException
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine
can be obtained.Through the services obtained from such a
ProcessEngine
, BPM and workflow operation
can be executed:RepositoryService
:
Manages Deployment
sRuntimeService
:
For starting and searching ProcessInstance
sTaskService
:
Exposes operations to manage human (standalone) Task
s,
such as claiming, completing and assigning tasksIdentityService
:
Used for managing User
s,
Group
s and the relations between themManagementService
:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService
:
Exposes information about ongoing and past process instances.FormService
:
Access to form data and rendered forms for starting new process instances and completing tasks.Interfaces used to include Java code in a process as the behavior of an activity
or as a listener to process events with
JavaDelegate
s.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of ProcessEngineException in org.camunda.bpm.application.impl
Modifier and TypeMethodDescriptionProcessApplicationLogger.ejbPaCannotAutodetectName
(NamingException e) ProcessApplicationLogger.ejbPaCannotLookupSelfReference
(NamingException e) ProcessApplicationLogger.exceptionWhileNotifyingPaTaskListener
(Exception e) ProcessApplicationLogger.exceptionWhileRegisteringDeploymentsWithJobExecutor
(Exception e) -
Uses of ProcessEngineException in org.camunda.bpm.container.impl
Modifier and TypeMethodDescriptionContainerIntegrationLogger.cannotComposeNameFor
(String serviceName, Exception e) ContainerIntegrationLogger.cannotDecodePathName
(UnsupportedEncodingException e) ContainerIntegrationLogger.cannotFindSetterForProperty
(String key, String canonicalName) ContainerIntegrationLogger.cannotLoadConfigurationClass
(String className, Exception e) ContainerIntegrationLogger.cannotOpenFileInputStream
(String absolutePath, IOException e) ContainerIntegrationLogger.cannotRegisterService
(ObjectName serviceName, Exception e) ContainerIntegrationLogger.cannotSetValueForProperty
(String key, String canonicalName, Exception e) ContainerIntegrationLogger.configurationClassHasWrongType
(String className, Class<?> expectedType, ClassCastException e) ContainerIntegrationLogger.couldNotGetResource
(String strippedPaResourceRootPath, ClassLoader cl, Exception e) ContainerIntegrationLogger.couldNotInstantiateJobExecutorClass
(Exception e) ContainerIntegrationLogger.couldNotLoadJobExecutorClass
(Exception e) ContainerIntegrationLogger.exceptionWhileGettingVirtualFolder
(URL url, URISyntaxException e) ContainerIntegrationLogger.exceptionWhileInvokingPaLifecycleCallback
(String methodName, String paName, Exception e) ContainerIntegrationLogger.exceptionWhileLoadingCpRoots
(String strippedPaResourceRootPath, ClassLoader classLoader, IOException e) ContainerIntegrationLogger.exceptionWhilePerformingOperationStep
(String opName, String stepName, Exception e) ContainerIntegrationLogger.exceptionWhileReadingProcessesXml
(String deploymentDescriptor, IOException e) ContainerIntegrationLogger.exceptionWhileScanning
(String file, IOException e) ContainerIntegrationLogger.exceptionWhileUnregisteringService
(String canonicalName, Throwable t) ContainerIntegrationLogger.invalidDeploymentDescriptorLocation
(String bpmPlatformFileLocation, MalformedURLException e) ContainerIntegrationLogger.unknownExceptionWhileParsingDeploymentDescriptor
(Exception e) ContainerIntegrationLogger.unsuppoertedParameterType
(Type parameterType) -
Uses of ProcessEngineException in org.camunda.bpm.engine
Modifier and TypeClassDescriptionclass
class
Exception thrown by the process engine in case a user tries to interact with a resource in an unauthorized way.class
Exception resulting from a bad user request.class
Exception during the parsing of an BPMN model.class
Runtime exception indicating the requested class was not found or an error occurred while loading the class.class
class
Exception that is thrown when an optimistic locking occurs in the datastore caused by concurrent access of the same data entry.class
class
Exception thrown by the persistence layer of the process engine in the occurrence of a problematic interaction with the datasource.class
Exception resulting from a error during a script compilation.class
Base exception resulting from a script engine interaction.class
Exception resulting from a error during a script evaluation.class
This exception is thrown, if an operation that requires a non-suspended entity (execution, task, process definition) is executed on a suspended one.class
This exception is thrown when you try to claim a task that is already claimed by someone else.class
Exception that is thrown when the Activiti engine discovers a mismatch between the database schema version and the engine version. -
Uses of ProcessEngineException in org.camunda.bpm.engine.cdi
Modifier and TypeClassDescriptionclass
Represents an exception in activiti cdi. -
Uses of ProcessEngineException in org.camunda.bpm.engine.delegate
Modifier and TypeClassDescriptionclass
Special exception that can be used to throw a BPMN Error fromJavaDelegate
s and expressions. -
Uses of ProcessEngineException in org.camunda.bpm.engine.exception
Modifier and TypeClassDescriptionclass
class
This exception is thrown, if an operation is not allowed to be executed.class
This exception is thrown, if an entity (case execution, case definition) is not found.class
This exception is thrown, if a given value is not valid.class
-
Uses of ProcessEngineException in org.camunda.bpm.engine.exception.cmmn
Modifier and TypeClassDescriptionclass
This is exception is thrown when a specific case definition is not found.class
This is exception is thrown when something happens in the execution of a case instance.class
This is exception is thrown when a specific case execution is not found.class
This is exception is thrown when a state transition on a case execution is not possible.class
This is exception is thrown when aCmmnModelInstance
is not found. -
Uses of ProcessEngineException in org.camunda.bpm.engine.exception.dmn
Modifier and TypeClassDescriptionclass
This exception is thrown when a specific decision definition is not found.class
This exception is thrown when something happens related to a decision.class
This exception is thrown when aDmnModelInstance
is not found. -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionprotected abstract void
DefaultPriorityProvider.logNotDeterminingPriority
(ExecutionEntity execution, Object value, ProcessEngineException e) Logs the exception which was thrown if the priority can not be determined. -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.bpmn.behavior
Modifier and TypeMethodDescriptionBpmnBehaviorLogger.addBccException
(String bcc, Throwable cause) BpmnBehaviorLogger.addCcException
(String cc, Throwable cause) BpmnBehaviorLogger.addRecipientException
(String recipient, Throwable cause) BpmnBehaviorLogger.addSenderException
(String sender, Throwable cause) BpmnBehaviorLogger.emailCreationException
(String format, Throwable cause) BpmnBehaviorLogger.emailFormatException()
BpmnBehaviorLogger.expressionNotANumberException
(String type, String expression) BpmnBehaviorLogger.expressionNotBooleanException
(String type, String expression) BpmnBehaviorLogger.incorrectlyUsedSignalException
(String className) BpmnBehaviorLogger.invalidAmountException
(String type, int amount) BpmnBehaviorLogger.invalidVariableTypeException
(String variable, String type) BpmnBehaviorLogger.missingBoundaryCatchEventError
(String executionId, String errorCode) BpmnBehaviorLogger.missingBoundaryCatchEventEscalation
(String executionId, String escalationCode) BpmnBehaviorLogger.missingConditionalFlowException
(String activityId) BpmnBehaviorLogger.missingDefaultFlowException
(String activityId, String defaultSequenceFlow) BpmnBehaviorLogger.missingDelegateParentClassException
(String className, String javaDelegate, String activityBehavior) BpmnBehaviorLogger.missingDelegateVariableMappingParentClassException
(String className, String delegateVarMapping) BpmnBehaviorLogger.missingRecipientsException()
BpmnBehaviorLogger.resolveCollectionExpressionOrVariableReferenceException()
BpmnBehaviorLogger.resolveDelegateExpressionException
(Expression expression, Class<?> parentClass, Class<JavaDelegate> javaDelegateClass) BpmnBehaviorLogger.sendingEmailException
(String recipient, Throwable cause) BpmnBehaviorLogger.shellExecutionException
(Throwable cause) BpmnBehaviorLogger.stuckExecutionException
(String activityId) BpmnBehaviorLogger.unresolvableExpressionException
(String expression, String type) BpmnBehaviorLogger.unsupportedConcurrencyException
(String scopeExecutionId, String className) BpmnBehaviorLogger.unsupportedSignalException
(String activityId) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.bpmn.parser
Modifier and TypeMethodDescriptionBpmnParseLogger.messageEventSubscriptionWithSameNameExists
(String resourceName, String eventName) BpmnParseLogger.parsingProcessException
(Exception cause) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.cfg
Modifier and TypeMethodDescriptionConfigurationLogger.databaseConnectionAccessException
(Exception cause) TransactionLogger.exceptionWhileInteractingWithTransaction
(String operation, Throwable e) ConfigurationLogger.invalidConfigCannotFindTransactionManger
(String jndiName, NamingException e) ConfigurationLogger.invalidConfigDefaultUserPermissionNameForTask
(String defaultUserPermissionNameForTask, String[] validPermissionNames) ConfigurationLogger.invalidConfigTransactionManagerIsNull()
ConfigurationLogger.invalidPropertyValue
(String propertyName, String propertyValue) ConfigurationLogger.invalidPropertyValue
(String propertyName, String propertyValue, Exception e) ConfigurationLogger.invalidPropertyValue
(String propertyName, String propertyValue, String reason) ConfigurationLogger.invalidTransactionIsolationLevel
(String transactionIsolationLevel) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.cmd
Modifier and TypeMethodDescriptionCommandLogger.cannotReolvePa
(ProcessApplicationIdentifier processApplicationIdentifier) CommandLogger.exceptionBpmnErrorPropagationFailed
(String errorCode, Throwable cause) CommandLogger.exceptionCommandWithUnauthorizedTenant
(String command) CommandLogger.exceptionJobRetriesMustNotBeNegative
(Integer retries) CommandLogger.exceptionNoJobFoundForId
(String jobId) CommandLogger.exceptionSettingJobRetriesAsyncNoJobsSpecified()
CommandLogger.exceptionSettingJobRetriesAsyncNoProcessesSpecified()
CommandLogger.exceptionSettingJobRetriesJobsNotSpecifiedCorrectly()
CommandLogger.exceptionWhenEvaluatingConditionalStartEvent()
CommandLogger.exceptionWhenEvaluatingConditionalStartEventByProcessDefinition
(String processDefinitionId) CommandLogger.exceptionWhenStartFormScriptEvaluation
(String processDefinitionId, Throwable cause) CommandLogger.exceptionWhileRetrievingDiagnosticsDataRegistryNull()
CommandLogger.historicProcessInstanceActive
(HistoricProcessInstance historicProcessInstance) CommandLogger.paWithNameNotRegistered
(String name) CommandLogger.processDefinitionOfHistoricInstanceDoesNotMatchTheGivenOne
(HistoricProcessInstance historicProcessInstance, String processDefinitionId) CommandLogger.processDefinitionOfInstanceDoesNotMatchModification
(ExecutionEntity processInstance, String processDefinitionId) CommandLogger.processInstanceDoesNotExist
(String processInstanceId) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.cmmn.behavior
Modifier and TypeMethodDescriptionCmmnBehaviorLogger.decisionDefinitionEvaluationFailed
(CmmnActivityExecution execution, Exception cause) CmmnBehaviorLogger.invokeVariableListenerException
(Throwable cause) CmmnBehaviorLogger.missingDelegateParentClassException
(String className, String parentClass) CmmnBehaviorLogger.ruleExpressionNotBooleanException
(Object result) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.cmmn.operation
Modifier and TypeMethodDescriptionCmmnOperationLogger.completingSubCaseErrorException
(CmmnExecution execution, Throwable cause) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.cmmn.transformer
Modifier and TypeClassDescriptionclass
Exception throw for errors during the transformation of a cmmn model.Modifier and TypeMethodDescriptionCmmnTransformerLogger.parseProcessException
(String name, Throwable cause) CmmnTransformerLogger.transformResourceException
(String name, Throwable cause) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.core
Modifier and TypeMethodDescriptionCoreLogger.duplicateVariableInstanceException
(CoreVariableInstance variableInstance) CoreLogger.javaSerializationProhibitedException
(String variableName) CoreLogger.transientVariableException
(String variableName) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.db
Modifier and TypeMethodDescriptionEnginePersistenceLogger.alreadyMarkedEntityInEntityCacheException
(String id, Class<? extends DbEntity> entityClass, DbEntityState state) EnginePersistenceLogger.batchingNotSupported
(DbOperation operation) EnginePersistenceLogger.cannotChangeTenantIdOfTask
(String taskId, String currentTenantId, String tenantIdToSet) EnginePersistenceLogger.cannotDeterminePaDataformats
(ProcessApplicationUnavailableException e) EnginePersistenceLogger.cannotSetDifferentTenantIdOnSubtask
(String parentTaskId, String tenantId, String tenantIdToSet) EnginePersistenceLogger.castModelInstanceException
(ModelElementInstance instance, String toElement, String type, String namespace, Throwable cause) EnginePersistenceLogger.checkDatabaseTableException
(Throwable cause) EnginePersistenceLogger.collectResultValueOfUnsupportedTypeException
(TypedValue collectResultValue) EnginePersistenceLogger.countTableRowsException
(Throwable cause) EnginePersistenceLogger.databaseHistoryLevelException
(String level) EnginePersistenceLogger.deleteProcessDefinitionWithProcessInstancesException
(String processDefinitionId, Long processInstanceCount) EnginePersistenceLogger.disabledHistoricInstancePermissionsException()
EnginePersistenceLogger.disabledHistoryException()
EnginePersistenceLogger.engineAuthorizationTypeException
(int usedType, int global, int grant, int revoke) EnginePersistenceLogger.entityCacheDuplicateEntryException
(String currentState, String id, Class<? extends DbEntity> entityClass, DbEntityState foundState) <T extends DbEntity>
ProcessEngineExceptionEnginePersistenceLogger.entityCacheLookupException
(Class<T> type, String id, Class<? extends DbEntity> entity, Throwable cause) EnginePersistenceLogger.executionNotFoundException
(String id) EnginePersistenceLogger.flushDbOperationException
(List<DbOperation> operationsToFlush, DbOperation failedOperation, Throwable e) EnginePersistenceLogger.flushDbOperationUnexpectedException
(List<DbOperation> operationsToFlush, Throwable cause) EnginePersistenceLogger.getDatabaseTableNameException
(Throwable cause) EnginePersistenceLogger.historicDecisionInputInstancesNotFetchedException()
EnginePersistenceLogger.historicDecisionOutputInstancesNotFetchedException()
EnginePersistenceLogger.illegalValueForUserIdException
(String id, String expected) EnginePersistenceLogger.instantiateSessionException
(String name, Throwable cause) EnginePersistenceLogger.invokeSchemaResourceToolException
(int length) EnginePersistenceLogger.invokeTaskListenerException
(Throwable cause) EnginePersistenceLogger.loadModelException
(String type, String modelName, String id, Throwable cause) EnginePersistenceLogger.mergeDbEntityException
(DbEntity entity) EnginePersistenceLogger.missingActivitiTablesException()
EnginePersistenceLogger.missingRelationMappingException
(String relation) EnginePersistenceLogger.missingSchemaResourceException
(String resourceName, String operation) EnginePersistenceLogger.missingSchemaResourceFileException
(String fileName, Throwable cause) EnginePersistenceLogger.missingTableException
(List<String> components) EnginePersistenceLogger.multipleDefinitionsForVersionTagException
(String decisionDefinitionKey, String decisionDefinitionVersionTag) EnginePersistenceLogger.multipleTenantsForCamundaFormDefinitionKeyException
(String camundaFormDefinitionKey) EnginePersistenceLogger.multipleTenantsForCaseDefinitionKeyException
(String caseDefinitionKey) EnginePersistenceLogger.multipleTenantsForDecisionDefinitionKeyException
(String decisionDefinitionKey) EnginePersistenceLogger.multipleTenantsForProcessDefinitionKeyException
(String processDefinitionKey) EnginePersistenceLogger.notAllowedIdException
(String id) EnginePersistenceLogger.notUsableGroupIdForGlobalAuthorizationException()
EnginePersistenceLogger.performDatabaseOperationException
(String operation, String sql, Throwable cause) EnginePersistenceLogger.requiredAsyncContinuationException
(String id) EnginePersistenceLogger.resolveParentOfExecutionFailedException
(String parentId, String executionId) EnginePersistenceLogger.restoreProcessInstanceException
(ExecutionEntity entity) EnginePersistenceLogger.retrieveMetadataException
(Throwable cause) EnginePersistenceLogger.serializerNotDefinedException
(Object entity) EnginePersistenceLogger.serializerOutOfContextException()
EnginePersistenceLogger.taskIsAlreadyAssignedException
(String usedId, String foundId) EnginePersistenceLogger.toManyProcessDefinitionsException
(int count, String key, String versionAttribute, String versionValue, String tenantId) EnginePersistenceLogger.unableToFetchDbSchemaVersion
(Throwable cause) EnginePersistenceLogger.unsupportedResourceTypeException
(String type) EnginePersistenceLogger.wrongBatchResultsSizeException
(List<DbOperation> operationsToFlush) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.digest
Modifier and TypeClassDescriptionclass
Exception thrown during the encryption process.Modifier and TypeMethodDescriptionSecurityLogger.cannotResolveAlgorithmPrefixFromGivenPasswordException
(String resolvedHashAlgorithmName, Collection<String> availableHashAlgorithmNames) SecurityLogger.hashAlgorithmForPasswordEncryptionAlreadyAvailableException
(String hashAlgorithmName) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.dmn
Modifier and TypeMethodDescriptionDecisionLogger.decisionResultCollectMappingException
(Collection<String> outputNames, DmnDecisionResult decisionResult, DecisionResultMapper resultMapper) DecisionLogger.decisionResultMappingException
(DmnDecisionResult decisionResult, DecisionResultMapper resultMapper, DmnEngineException cause) DecisionLogger.exceptionNoDrdForResource
(String resourceName) DecisionLogger.exceptionParseDmnResource
(String resouceName, Exception cause) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.errorcode
Modifier and TypeMethodDescriptiondefault Integer
ExceptionCodeProvider.provideCode
(ProcessEngineException processEngineException) Called when aProcessEngineException
occurs. -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.externaltask
Modifier and TypeMethodDescriptionvoid
ExternalTaskLogger.couldNotDeterminePriority
(ExecutionEntity execution, Object value, ProcessEngineException e) Logs that the priority could not be determined in the given context.protected void
DefaultExternalTaskPriorityProvider.logNotDeterminingPriority
(ExecutionEntity execution, Object value, ProcessEngineException e) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.form
-
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.form.validator
Modifier and TypeClassDescriptionclass
class
Runtime exception for use within a FormFieldValidator.class
Runtime exception for validation of form fields. -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.identity
Modifier and TypeClassDescriptionclass
Marks an exception triggered inside an identity provider implementation -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.interceptor
Modifier and TypeMethodDescriptionprotected void
ExceptionCodeInterceptor.assignCodeToException
(ProcessEngineException pex) protected Integer
ExceptionCodeInterceptor.provideCode
(ProcessEngineException pex, int initialCode) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.jobexecutor
Modifier and TypeMethodDescriptionJobExecutorLogger.jobExecutorPriorityRangeException
(String reason) JobExecutorLogger.jobNotFoundException
(String jobId) JobExecutorLogger.wrapJobExecutionFailure
(JobFailureCollector jobFailureCollector, Throwable cause) Modifier and TypeMethodDescriptionvoid
JobExecutorLogger.couldNotDeterminePriority
(ExecutionEntity execution, Object value, ProcessEngineException e) protected void
DefaultJobPriorityProvider.logNotDeterminingPriority
(ExecutionEntity execution, Object value, ProcessEngineException e) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.migration
Modifier and TypeMethodDescriptionMigrationLogger.cannotAttachToTransitionInstance
(MigratingInstance attachingInstance) MigrationLogger.cannotBecomeSubordinateInNonScope
(MigratingActivityInstance activityInstance) MigrationLogger.cannotDestroySubordinateInNonScope
(MigratingActivityInstance activityInstance) MigrationLogger.cannotHandleChild
(MigratingScopeInstance scopeInstance, MigratingProcessElementInstance childCandidate) MigrationLogger.cannotMigrateBetweenTenants
(String sourceTenantId, String targetTenantId) MigrationLogger.cannotMigrateInstanceBetweenTenants
(String processInstanceId, String sourceTenantId, String targetTenantId) MigrationLogger.processDefinitionOfInstanceDoesNotMatchMigrationPlan
(ExecutionEntity processInstance, String processDefinitionId) MigrationLogger.processInstanceDoesNotExist
(String processInstanceId) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.pvm
Modifier and TypeMethodDescriptionPvmLogger.scopeNotFoundException
(String activityId, String executionId) -
Uses of ProcessEngineException in org.camunda.bpm.engine.impl.util
Modifier and TypeMethodDescriptionprotected static <T extends ProcessEngineException>
TEnsureUtil.generateException
(Class<T> exceptionClass, String message, String variableName, String description) Modifier and TypeMethodDescriptionEngineUtilLogger.ambiguousSetterMethod
(String setterName, String name) EngineUtilLogger.cannotConvertUrlToUri
(URL url, URISyntaxException e) EngineUtilLogger.exceptionDuringFormParsing
(String cause, String resourceName) EngineUtilLogger.exceptionDuringParsing
(String string, String resourceName, List<Problem> errors, List<Problem> warnings) EngineUtilLogger.exceptionWhileApplyingFieldDeclatation
(String declName, String className, Exception e) EngineUtilLogger.exceptionWhileGettingFile
(String filePath, Exception e) EngineUtilLogger.exceptionWhileInstantiatingClass
(String className, Exception e) EngineUtilLogger.exceptionWhileInvokingMethod
(String methodName, Object target, Exception e) EngineUtilLogger.exceptionWhileParsingCycleExpresison
(String duedateDescription, Exception e) EngineUtilLogger.exceptionWhileReadingFile
(String filePath, Exception e) EngineUtilLogger.exceptionWhileReadingStream
(String inputStreamName, Exception e) EngineUtilLogger.exceptionWhileResolvingDuedate
(String duedate, Exception e) EngineUtilLogger.exceptionWhileSettingField
(Field field, Object object, Object value, Exception e) EngineUtilLogger.exceptionWhileSettingXxeProcessing
(Throwable cause) EngineUtilLogger.exceptionWhileWritingToFile
(String filePath, Exception e) EngineUtilLogger.incompatibleTypeForFieldDeclaration
(FieldDeclaration declaration, Object target, Field field) EngineUtilLogger.invalidBitNumber
(int bitNumber) EngineUtilLogger.malformedUrlException
(String url, Throwable cause) EngineUtilLogger.multipleSourcesException
(StreamSource source1, StreamSource source2) EngineUtilLogger.parsingFailureException
(String name, Throwable cause) EngineUtilLogger.unableToAccessField
(Field field, String name) EngineUtilLogger.unableToAccessMethod
(String methodName, String name) Modifier and TypeMethodDescriptionstatic boolean
ExceptionUtil.checkConstraintViolationException
(ProcessEngineException genericPersistenceException) static boolean
ExceptionUtil.checkValueTooLongException
(ProcessEngineException genericPersistenceException) static SQLException
ExceptionUtil.unwrapException
(ProcessEngineException genericPersistenceException) Modifier and TypeMethodDescriptionstatic void
EnsureUtil.ensureAtLeastOneNotEmpty
(Class<? extends ProcessEngineException> exceptionClass, String message, String... values) static void
EnsureUtil.ensureAtLeastOneNotNull
(Class<? extends ProcessEngineException> exceptionClass, String message, Object... values) static void
EnsureUtil.ensureEquals
(Class<? extends ProcessEngineException> exceptionClass, String variableName, long obj1, long obj2) static void
EnsureUtil.ensureGreaterThanOrEqual
(Class<? extends ProcessEngineException> exceptionClass, String message, String variableName, long value1, long value2) static void
EnsureUtil.ensureInstanceOf
(Class<? extends ProcessEngineException> exceptionClass, String variableName, Object value, Class<?> expectedClass) static void
EnsureUtil.ensureInstanceOf
(Class<? extends ProcessEngineException> exceptionClass, String message, String variableName, Object value, Class<?> expectedClass) static void
EnsureUtil.ensureNotContainsEmptyString
(Class<? extends ProcessEngineException> exceptionClass, String message, String variableName, Collection<String> values) static void
EnsureUtil.ensureNotContainsEmptyString
(Class<? extends ProcessEngineException> exceptionClass, String variableName, Collection<String> values) static void
EnsureUtil.ensureNotContainsNull
(Class<? extends ProcessEngineException> exceptionClass, String message, String variableName, Collection<?> values) static void
EnsureUtil.ensureNotContainsNull
(Class<? extends ProcessEngineException> exceptionClass, String variableName, Collection<?> values) static void
EnsureUtil.ensureNotEmpty
(Class<? extends ProcessEngineException> exceptionClass, String variableName, String value) static void
EnsureUtil.ensureNotEmpty
(Class<? extends ProcessEngineException> exceptionClass, String message, String variableName, String value) static void
EnsureUtil.ensureNotEmpty
(Class<? extends ProcessEngineException> exceptionClass, String message, String variableName, Collection collection) static void
EnsureUtil.ensureNotEmpty
(Class<? extends ProcessEngineException> exceptionClass, String message, String variableName, Map map) static void
EnsureUtil.ensureNotEmpty
(Class<? extends ProcessEngineException> exceptionClass, String variableName, Collection collection) static void
EnsureUtil.ensureNotEmpty
(Class<? extends ProcessEngineException> exceptionClass, String variableName, Map map) static void
EnsureUtil.ensureNotNull
(Class<? extends ProcessEngineException> exceptionClass, String variableName, Object value) static void
EnsureUtil.ensureNotNull
(Class<? extends ProcessEngineException> exceptionClass, String variableName, Object... values) static void
EnsureUtil.ensureNotNull
(Class<? extends ProcessEngineException> exceptionClass, String message, String variableName, Object value) static void
EnsureUtil.ensureNotNull
(Class<? extends ProcessEngineException> exceptionClass, String message, String variableName, Object... values) static void
EnsureUtil.ensureNull
(Class<? extends ProcessEngineException> exceptionClass, String message, String variableName, Object value) static void
EnsureUtil.ensureNumberOfElements
(Class<? extends ProcessEngineException> exceptionClass, String message, String variableName, Collection collection, int elements) static void
EnsureUtil.ensureNumberOfElements
(Class<? extends ProcessEngineException> exceptionClass, String variableName, Collection collection, int elements) static void
EnsureUtil.ensureOnlyOneNotNull
(Class<? extends ProcessEngineException> exceptionClass, String message, Object... values) static void
EnsureUtil.ensurePositive
(Class<? extends ProcessEngineException> exceptionClass, String variableName, Long value) static void
EnsureUtil.ensurePositive
(Class<? extends ProcessEngineException> exceptionClass, String message, String variableName, Long value) static void
EnsureUtil.ensureValidIndividualResourceId
(Class<? extends ProcessEngineException> exceptionClass, String message, String id) static void
EnsureUtil.ensureValidIndividualResourceIds
(Class<? extends ProcessEngineException> exceptionClass, String message, Collection<String> ids) -
Uses of ProcessEngineException in org.camunda.bpm.engine.migration
Modifier and TypeClassDescriptionclass
Thrown if at least one migration instruction cannot be applied to the activity instance it matches.class
Thrown if a migration plan is not valid, e.g. -
Uses of ProcessEngineException in org.camunda.bpm.engine.rest.exception
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.Response.Status
ExceptionHandlerHelper.getStatus
(ProcessEngineException exception) jakarta.ws.rs.core.Response
ProcessEngineExceptionHandler.toResponse
(ProcessEngineException exception) -
Uses of ProcessEngineException in org.camunda.bpm.engine.rest.sub.repository.impl
Modifier and TypeMethodDescriptionprotected InvalidRequestException
DeploymentResourceImpl.createInvalidRequestException
(String action, jakarta.ws.rs.core.Response.Status status, ProcessEngineException cause) -
Uses of ProcessEngineException in org.camunda.bpm.engine.rest.sub.runtime.impl
Modifier and TypeMethodDescriptionprotected InvalidRequestException
CaseExecutionResourceImpl.createInvalidRequestException
(String transition, jakarta.ws.rs.core.Response.Status status, ProcessEngineException cause) protected InvalidRequestException
CaseInstanceResourceImpl.createInvalidRequestException
(String transition, jakarta.ws.rs.core.Response.Status status, ProcessEngineException cause) protected RestException
CaseExecutionResourceImpl.createRestException
(String transition, jakarta.ws.rs.core.Response.Status status, ProcessEngineException cause) protected RestException
CaseInstanceResourceImpl.createRestException
(String transition, jakarta.ws.rs.core.Response.Status status, ProcessEngineException cause) -
Uses of ProcessEngineException in org.camunda.bpm.identity.impl.ldap
-
Uses of ProcessEngineException in org.camunda.bpm.run.utils
Modifier and TypeMethodDescriptionCamundaBpmRunLogger.failedProcessEnginePluginInstantiation
(String pluginClass, Exception e) CamundaBpmRunLogger.pluginPropertyNotFound
(String pluginName, String propertyName, Exception e) -
Uses of ProcessEngineException in org.camunda.bpm.webapp.impl.security.filter.headersec.provider.impl
Modifier and TypeMethodDescriptionprotected ProcessEngineException
StrictTransportSecurityProvider.exceptionParametersCannotBeSet
(String className) -
Uses of ProcessEngineException in org.camunda.spin.plugin.impl