use of org.hisp.dhis.common.exception.InvalidRepeatableStageParamsException in project dhis2-core by dhis2.
the class DefaultQueryItemLocator method getRepeatableStageParams.
private static RepeatableStageParams getRepeatableStageParams(String dimension) {
try {
RepeatableStageParams repeatableStageParams = RepeatableStageParamsHelper.getRepeatableStageParams(dimension);
repeatableStageParams.setDimension(dimension);
return repeatableStageParams;
} catch (InvalidRepeatableStageParamsException e) {
ErrorMessage errorMessage = new ErrorMessage(dimension, ErrorCode.E1101);
throw new IllegalQueryException(errorMessage);
}
}
Aggregations