public class ExceptionTableEntry extends Object
exception table :
[pc: 0, pc: 32] -> 33 when : java.lang.Exception
[pc: 34, pc: 50] -> 51 when : java.lang.RuntimeException
Each row indicate a try...catch... information
| 构造器和说明 |
|---|
ExceptionTableEntry(cn.wensiqun.asmsupport.org.objectweb.asm.Label start,
cn.wensiqun.asmsupport.org.objectweb.asm.Label end,
cn.wensiqun.asmsupport.org.objectweb.asm.Label handler,
cn.wensiqun.asmsupport.org.objectweb.asm.Type exception) |
| 限定符和类型 | 方法和说明 |
|---|---|
cn.wensiqun.asmsupport.org.objectweb.asm.Label |
getEnd()
Get try end label
|
cn.wensiqun.asmsupport.org.objectweb.asm.Type |
getException()
Get the what's type to catch
|
cn.wensiqun.asmsupport.org.objectweb.asm.Label |
getHandler()
Get exception handler position
|
cn.wensiqun.asmsupport.org.objectweb.asm.Label |
getStart()
Get try start label
|
public ExceptionTableEntry(cn.wensiqun.asmsupport.org.objectweb.asm.Label start,
cn.wensiqun.asmsupport.org.objectweb.asm.Label end,
cn.wensiqun.asmsupport.org.objectweb.asm.Label handler,
cn.wensiqun.asmsupport.org.objectweb.asm.Type exception)
public cn.wensiqun.asmsupport.org.objectweb.asm.Label getStart()
public cn.wensiqun.asmsupport.org.objectweb.asm.Label getEnd()
public cn.wensiqun.asmsupport.org.objectweb.asm.Label getHandler()
public cn.wensiqun.asmsupport.org.objectweb.asm.Type getException()
Copyright © 2015. All rights reserved.