Example

public interface ExampleHome extends javax.ejb.EJBHome {

public void create();
//other methods that implement the interface
}

Solution
Throw javax.ejb.CreateException for each create method.


public interface ExampleHome extends javax.ejb.EJBHome {

public void create() throws javax.ejb.FinderException;
//other methods that implement the interface
}