< prev index next >

src/java.instrument/share/native/libinstrument/JavaExceptions.c

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 212,221 **** --- 212,226 ---- case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_CLASS_MODIFIERS_CHANGED: throwableClassName = "java/lang/UnsupportedOperationException"; message = "class redefinition failed: attempted to change the class modifiers"; break; + case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_CLASS_ATTRIBUTE_CHANGED: + throwableClassName = "java/lang/UnsupportedOperationException"; + message = "class redefinition failed: attempted to change the class NestHost or NestMembers attribute"; + break; + case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_MODIFIERS_CHANGED: throwableClassName = "java/lang/UnsupportedOperationException"; message = "class redefinition failed: attempted to change method modifiers"; break;
< prev index next >