Beispiel
public interface
ExampleHome
extends
javax.ejb.EJBHome {
public void
create();
//other methods that implement the interface
}
Lösung
Lösen Sie für jede Methode 'create' die Ausnahmebedingung 'javax.ejb.CreateException' aus.
public interface
ExampleHome
extends
javax.ejb.EJBHome {
public void
create()
throws
javax.ejb.FinderException;
//other methods that implement the interface
}