3334353637383940414243
{ public void throwException(int i) throws JavaException,IdlException { if (i > 0) throw new JavaException(i, "" + i + " is positive"); else if (i < 0) throw new IdlException(i, "" + i + " is negative"); else return; // no exception }