package examples.mega.client;

import java.rmi.RemoteException;

public class HandlerChain{

  public void invoke( MegaPort port ) throws RemoteException,
      InvokeFailedException {

    port.methodWithHandlerChain();
  }
}

