Home | History | Annotate | Download | only in bytecode

Lines Matching full:exceptions

339          * @param exceptions        throws clause.  It may be null.
345 String[] exceptions, AttributeWriter aw) {
349 if (exceptions == null)
352 intfs = constPool.addClassInfo(exceptions);
363 * @param exceptions throws clause. indexes indicating <code>CONSTANT_Class_info</code>s.
367 public void begin(int accessFlags, int name, int descriptor, int[] exceptions, AttributeWriter aw) {
375 if (exceptions != null)
380 if (exceptions != null)
381 writeThrows(exceptions);
396 private void writeThrows(int[] exceptions) {
401 output.writeInt(exceptions.length * 2 + 2);
402 output.writeShort(exceptions.length);
403 for (int i = 0; i < exceptions.length; i++)
404 output.writeShort(exceptions[i]);