< prev index next >

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

Print this page


   1 /*
   2  * Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 195                 break;
 196 
 197         case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_SCHEMA_CHANGED:
 198                 throwableClassName = "java/lang/UnsupportedOperationException";
 199                 message = "class redefinition failed: attempted to change the schema (add/remove fields)";
 200                 break;
 201 
 202         case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED:
 203                 throwableClassName = "java/lang/UnsupportedOperationException";
 204                 message = "class redefinition failed: attempted to change superclass or interfaces";
 205                 break;
 206 
 207         case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_DELETED:
 208                 throwableClassName = "java/lang/UnsupportedOperationException";
 209                 message = "class redefinition failed: attempted to delete a method";
 210                 break;
 211 
 212         case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_CLASS_MODIFIERS_CHANGED:
 213                 throwableClassName = "java/lang/UnsupportedOperationException";
 214                 message = "class redefinition failed: attempted to change the class modifiers";





 215                 break;
 216 
 217         case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_MODIFIERS_CHANGED:
 218                 throwableClassName = "java/lang/UnsupportedOperationException";
 219                 message = "class redefinition failed: attempted to change method modifiers";
 220                 break;
 221 
 222         case JVMTI_ERROR_UNSUPPORTED_VERSION:
 223                 throwableClassName = "java/lang/UnsupportedClassVersionError";
 224                 break;
 225 
 226         case JVMTI_ERROR_NAMES_DONT_MATCH:
 227                 throwableClassName = "java/lang/NoClassDefFoundError";
 228                 message = "class names don't match";
 229                 break;
 230 
 231         case JVMTI_ERROR_INVALID_CLASS_FORMAT:
 232                 throwableClassName = "java/lang/ClassFormatError";
 233                 break;
 234 


   1 /*
   2  * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 195                 break;
 196 
 197         case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_SCHEMA_CHANGED:
 198                 throwableClassName = "java/lang/UnsupportedOperationException";
 199                 message = "class redefinition failed: attempted to change the schema (add/remove fields)";
 200                 break;
 201 
 202         case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED:
 203                 throwableClassName = "java/lang/UnsupportedOperationException";
 204                 message = "class redefinition failed: attempted to change superclass or interfaces";
 205                 break;
 206 
 207         case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_DELETED:
 208                 throwableClassName = "java/lang/UnsupportedOperationException";
 209                 message = "class redefinition failed: attempted to delete a method";
 210                 break;
 211 
 212         case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_CLASS_MODIFIERS_CHANGED:
 213                 throwableClassName = "java/lang/UnsupportedOperationException";
 214                 message = "class redefinition failed: attempted to change the class modifiers";
 215                 break;
 216 
 217         case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_CLASS_ATTRIBUTE_CHANGED:
 218                 throwableClassName = "java/lang/UnsupportedOperationException";
 219                 message = "class redefinition failed: attempted to change the class NestHost or NestMembers attribute";
 220                 break;
 221 
 222         case JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_MODIFIERS_CHANGED:
 223                 throwableClassName = "java/lang/UnsupportedOperationException";
 224                 message = "class redefinition failed: attempted to change method modifiers";
 225                 break;
 226 
 227         case JVMTI_ERROR_UNSUPPORTED_VERSION:
 228                 throwableClassName = "java/lang/UnsupportedClassVersionError";
 229                 break;
 230 
 231         case JVMTI_ERROR_NAMES_DONT_MATCH:
 232                 throwableClassName = "java/lang/NoClassDefFoundError";
 233                 message = "class names don't match";
 234                 break;
 235 
 236         case JVMTI_ERROR_INVALID_CLASS_FORMAT:
 237                 throwableClassName = "java/lang/ClassFormatError";
 238                 break;
 239 


< prev index next >