103104105106107108109
throws NegativeArgumentException, java.rmi.RemoteException { if (i >= 0) return "#" + i; else throw new NegativeArgumentException(i); }
148149150151152153154155156157158
throws java.rmi.RemoteException { Object obj = null; try { NegativeArgumentException e = new NegativeArgumentException(-7777); throw e; } catch (NegativeArgumentException e) { obj = e;
104105106107108109110
149150151152153154155156157158159