public class PersonClient { public static void main(String [] args) { try { PersonInterface personInterface = new Person_Stub(); int age = personInterface.getAge(); String name = personInterface.getName(); System.out.println(name + " is " + age + " years old"); } catch (Throwable t) {t.printStackTrace(); } } }