Remote Interface question

I have a remote Interface as follows.

public interface AccessDataBaseI {

List retrieveItems(Object id) throws ApplicationException;

}

The ApplicationException extends RemoteException.

public class ApplicationException extends RemoteException {

public AppException () {}

public AppException (String msg) {

super(msg);

}

}

I build compile the application and I dont have a problem .When I deploy it to the server I get the following error message .

method retrieveItems(Object id) defined in the remote interface must include java.rmi.RemoteException in its throws clause.

It includes the ApplicationException in its signature which extends RemoteException .

Any ideas what could be wrong and how to over come this .

I am using weblogic 8.1.4 .

Thanks for your help.

[871 byte] By [ballyallaa] at [2007-11-26 16:07:43]
# 1
> method retrieveItems(Object id) defined in the remote> interface must include java.rmi.RemoteException in> its throws clause.include it and you should be finealso, use the code tags when you post code
CarrieHunta at 2007-7-8 22:30:01 > top of Java-index,Desktop,Developing for the Desktop...
# 2
thanks .I went with your suggestion.Thanks for you help.
ballyallaa at 2007-7-8 22:30:01 > top of Java-index,Desktop,Developing for the Desktop...