¿¹Á¦

public interface ExampleHome extends javax.ejb.EJBHome {

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

¼Ö·ç¼Ç
°¢ create ¸Þ¼Òµå¿¡ ´ëÇØ javax.ejb.CreateExceptionÀ» ó¸®ÇϽʽÿÀ.


public interface ExampleHome extends javax.ejb.EJBHome {

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