Also I got the same problem when I remove the @Runtime(javaDelegateClass = "org.acme.runtime.AcmeMoneyJavaDelegation") It works fine .  ????
My AcmeMoneyJavaDelegation class is in the same package and it's 
package org.acme.runtime;
import java.beans.Expression;
import org.activiti.designer.integration.servicetask.annotation.Runtime;
import org.activiti.engine.delegate.DelegateExecution;
import org.activiti.engine.delegate.JavaDelegate;
 
public class AcmeMoneyJavaDelegation implements JavaDelegate {
     private Expression accountNumber;
     private Expression comments;
     private Expression maximumProcessingTime;
     private Expression vipCustomer;
     private Expression accountType;
     private Expression withdrawlLimit;
     private Expression expiryDate; 
     private Expression type;  
     
   public void execute(DelegateExecution execution) throws Exception {
 
      System.out.println("The delegrate class is called");
    }
}
Please any help ???? !!!!