private void checkParameters(Money pastAdministrativeOfficeFeeAndInsuranceAmount) {
   if (pastAdministrativeOfficeFeeAndInsuranceAmount == null
       || pastAdministrativeOfficeFeeAndInsuranceAmount.isZero()) {
     throw new DomainException(
         "error.net.sourceforge.fenixedu.domain.accounting.events.PastAdministrativeOfficeFeeAndInsuranceEvent.pastAdministrativeOfficeFeeAndInsuranceAmount.cannot.be.null.and.must.be.greather.than.zero");
   }
 }