public void createInsuranceEvent(final StudentCurricularPlan studentCurricularPlan, final ExecutionYear executionYear) {
final AccountingEventsManager manager = new AccountingEventsManager();
final InvocationResult result = manager.createInsuranceEvent(studentCurricularPlan, executionYear);
if (!result.isSuccess()) {
throw new DomainExceptionWithInvocationResult(result);
}
}