In many cases returning the JVMTI error code isn't enough.
The JVMTI could improve diagnoseability and provide more information about error
details. For example, RedefineClasses or RetransformClasses take a list of classes
in arguments.
Suppose the error code JVMTI_ERROR_INVALID_CLASS is returned.
Currently, in this case, there is no way to provide more information:
invalid class name and a specific error message.
The following is simple variant of such a function.
jvmtiError LastErrorCodeDetails(unsigend char **error_details);
Gets a string with error details related to the last JVMTI function call.
Return result must be same as was in the last JVMTI call.
###@###.### 2005-05-18 06:15:04 GMT
The JVMTI could improve diagnoseability and provide more information about error
details. For example, RedefineClasses or RetransformClasses take a list of classes
in arguments.
Suppose the error code JVMTI_ERROR_INVALID_CLASS is returned.
Currently, in this case, there is no way to provide more information:
invalid class name and a specific error message.
The following is simple variant of such a function.
jvmtiError LastErrorCodeDetails(unsigend char **error_details);
Gets a string with error details related to the last JVMTI function call.
Return result must be same as was in the last JVMTI call.
###@###.### 2005-05-18 06:15:04 GMT
- duplicates
-
JDK-4659952 JDI: Better feedback when hotswap can't be done would be appreciated
-
- Closed
-
-
JDK-6385201 JVMTI Spec: Should be able to get more detailed informaton on JVM TI errors
-
- Closed
-