Skip to content

Commit ea9e975

Browse files
committedMar 8, 2022
Add initial mapping of error
1 parent 343cd6b commit ea9e975

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/jdk.jdi/share/classes/com/sun/tools/jdi/JDWPException.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -31,6 +31,7 @@
3131
import com.sun.jdi.InvalidModuleException;
3232
import com.sun.jdi.InvalidStackFrameException;
3333
import com.sun.jdi.ObjectCollectedException;
34+
import com.sun.jdi.OpaqueFrameException;
3435
import com.sun.jdi.VMDisconnectedException;
3536
import com.sun.jdi.VMOutOfMemoryException;
3637

@@ -73,6 +74,8 @@ RuntimeException toJDIException() {
7374
return new InconsistentDebugInfoException();
7475
case JDWP.Error.INVALID_THREAD:
7576
return new IllegalThreadStateException();
77+
case JDWP.Error.OPAQUE_FRAME:
78+
return new OpaqueFrameException();
7679
default:
7780
return new InternalException("Unexpected JDWP Error: " + errorCode, errorCode);
7881
}

0 commit comments

Comments
 (0)
Please sign in to comment.