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;
}
Exception ( BussinessException
) is not in the EJBClient
classpath.
How to solve this problem ?? I can not put the (physical) EJB project in the client classpath.