Class ClassFile.CodeAttribute.ExceptionTableEntry

  • Enclosing class:
    ClassFile.CodeAttribute

    private static class ClassFile.CodeAttribute.ExceptionTableEntry
    extends java.lang.Object
    Representation of an entry in the "exception_table" of a "Code" attribute (see JVMS 4.7.3).
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) short catchType  
      (package private) short endPc  
      (package private) short handlerPc  
      (package private) short startPc  
    • Constructor Summary

      Constructors 
      Constructor Description
      ExceptionTableEntry​(short startPc, short endPc, short handlerPc, short catchType)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • startPc

        final short startPc
      • endPc

        final short endPc
      • handlerPc

        final short handlerPc
      • catchType

        final short catchType
    • Constructor Detail

      • ExceptionTableEntry

        ExceptionTableEntry​(short startPc,
                            short endPc,
                            short handlerPc,
                            short catchType)