3
I have the following situation:
EJB PROJECT
public BussinessException extends Exception {}
public MyInterfaceImplementation implements MyInterface {}
EJB PROJECT CLIENT
public interface MyInterface {
public void foo() throws BussinessException;
}
Only that the exception (BussinessException
) is not in the classpath of EJBClient
.
How to solve this problem?? I can’t put the EJB project (physical) on the client’s classpath.