Package org.camunda.bpm.engine.migration
Class MigrationPlanValidationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.camunda.bpm.engine.ProcessEngineException
-
- org.camunda.bpm.engine.BadUserRequestException
-
- org.camunda.bpm.engine.migration.MigrationPlanValidationException
-
- All Implemented Interfaces:
Serializable
public class MigrationPlanValidationException extends BadUserRequestException
Thrown if a migration plan is not valid, e.g. because it contains instructions that can in general not be executed. Contains aMigrationPlanValidationReport
that contains the details for all validation erorrs.- Author:
- Thorben Lindhauer
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected MigrationPlanValidationReport
validationReport
-
Constructor Summary
Constructors Constructor Description MigrationPlanValidationException(String message, MigrationPlanValidationReport validationReport)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MigrationPlanValidationReport
getValidationReport()
A report with all invalid instructions-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
validationReport
protected MigrationPlanValidationReport validationReport
-
-
Constructor Detail
-
MigrationPlanValidationException
public MigrationPlanValidationException(String message, MigrationPlanValidationReport validationReport)
-
-
Method Detail
-
getValidationReport
public MigrationPlanValidationReport getValidationReport()
A report with all invalid instructions
-
-