File tree 1 file changed +4
-1
lines changed
src/jdk.jdi/share/classes/com/sun/tools/jdi
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 1998, 2017 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1998, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
31
31
import com .sun .jdi .InvalidModuleException ;
32
32
import com .sun .jdi .InvalidStackFrameException ;
33
33
import com .sun .jdi .ObjectCollectedException ;
34
+ import com .sun .jdi .OpaqueFrameException ;
34
35
import com .sun .jdi .VMDisconnectedException ;
35
36
import com .sun .jdi .VMOutOfMemoryException ;
36
37
@@ -73,6 +74,8 @@ RuntimeException toJDIException() {
73
74
return new InconsistentDebugInfoException ();
74
75
case JDWP .Error .INVALID_THREAD :
75
76
return new IllegalThreadStateException ();
77
+ case JDWP .Error .OPAQUE_FRAME :
78
+ return new OpaqueFrameException ();
76
79
default :
77
80
return new InternalException ("Unexpected JDWP Error: " + errorCode , errorCode );
78
81
}
You can’t perform that action at this time.
0 commit comments