It looks lime you've declared a method on the Remote Interface of your bean, but not implemented this correctly in the implementation class.

If your remote interface is:

Code:
public void updateRecord throws RemoteException, MyException;
Your business implementation class should have a method in it:

Code:
public void updateRecord throws MyException {}