blob: 860a93c844767a07fb5f5c3a885d542cd2d75964 [file] [log] [blame]
/** @inheritDoc */
public void #method_name(#argument_list) #throws
{
try
{
ref.invoke(this, met_#method_name,
#object_arg_list,
#method_hash);
}
catch (RuntimeException e)
{
throw e;
}
catch (RemoteException e)
{
throw e;
}
catch (Exception e)
{
UnexpectedException uex = new UnexpectedException(exception_message);
uex.detail = e;
throw uex;
}
}