}
//exceptions
MpxExceptionConverter exceptionConverter=new MpxExceptionConverter();
for (ProjectCalendarException mpxException : mpxCalendar.getCalendarExceptions()){
WorkCalendarException exception=new WorkCalendarException();
exceptionConverter.from(mpxException,exception);
calendar.addException(exception);
}
}