本文整理汇总了Java中com.sun.jdi.AbsentInformationException.printStackTrace方法的典型用法代码示例。如果您正苦于以下问题:Java AbsentInformationException.printStackTrace方法的具体用法?Java AbsentInformationException.printStackTrace怎么用?Java AbsentInformationException.printStackTrace使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.sun.jdi.AbsentInformationException
的用法示例。
在下文中一共展示了AbsentInformationException.printStackTrace方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addBreakpoint
import com.sun.jdi.AbsentInformationException; //导入方法依赖的package包/类
private static void addBreakpoint(VirtualMachine vm, ReferenceType refType) {
Location breakpointLocation = null;
List<Location> locs;
try {
locs = refType.allLineLocations();
for (Location loc: locs) {
if (loc.method().name().equals(METHOD_NAME)) {
breakpointLocation = loc;
break;
}
}
} catch (AbsentInformationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if (breakpointLocation != null) {
EventRequestManager evtReqMgr = vm.eventRequestManager();
BreakpointRequest bReq = evtReqMgr.createBreakpointRequest(breakpointLocation);
bReq.setSuspendPolicy(BreakpointRequest.SUSPEND_ALL);
bReq.enable();
}
}
示例2: testValueOfNotUnsupported
import com.sun.jdi.AbsentInformationException; //导入方法依赖的package包/类
@Test(expected = UnsupportedOperationException.class)
public void testValueOfNotUnsupported() {
try {
ObjectReference array = (ObjectReference)this.getLocalValue("arrays");
formatter.valueOf("new int[] { 1, 2, 3}", array.referenceType(), new HashMap<>());
} catch (AbsentInformationException e) {
e.printStackTrace();
fail("Failure due to exception.");
}
}