View Javadoc
1 package jrre.classloader.classfile.attributes; 2 3 public class ExceptionTable{ 4 5 private ExceptionTableEntry [] entries; 6 7 public ExceptionTable(){} 8 9 public ExceptionTable(ExceptionTableEntry [] entries){ 10 this.entries = entries; 11 } 12 13 public String toString(){ 14 StringBuffer toReturn = new StringBuffer(); 15 16 toReturn.append("\n\t\tException Table: "); 17 18 for(int i=0;i < entries.length;i++) 19 toReturn.append("\n\t\t\t"+entries[i]); 20 21 return toReturn.toString(); 22 } 23 24 }

This page was automatically generated by Maven