Skip to content

Commit

Permalink
Add forgotten exception cause
Browse files Browse the repository at this point in the history
(cherry picked from commit 2377d62)
  • Loading branch information
mederly committed Apr 6, 2018
1 parent 11c4f77 commit ef4b4ce
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -69,7 +69,7 @@ public WorkSegmentationStrategy createStrategy(TaskWorkManagementType configurat
PrismContext.class);
return constructor.newInstance(configuration, prismContext);
} catch (NoSuchMethodException | IllegalAccessException | InstantiationException | InvocationTargetException e) {
throw new SystemException("Couldn't instantiate work bucket segmentation strategy " + strategyClass + " for " + configuration);
throw new SystemException("Couldn't instantiate work bucket segmentation strategy " + strategyClass + " for " + configuration, e);
}
}

Expand Down

0 comments on commit ef4b4ce

Please sign in to comment.