src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/InvalidInstalledCodeException.java
changeset 54669 ad45b3802d4e
parent 47216 71c04702a3d5
equal deleted inserted replaced
54668:0bda2308eded 54669:ad45b3802d4e
     1 /*
     1 /*
     2  * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    25 /**
    25 /**
    26  * Exception thrown by the runtime in case an invalidated machine code is called.
    26  * Exception thrown by the runtime in case an invalidated machine code is called.
    27  */
    27  */
    28 public final class InvalidInstalledCodeException extends Exception {
    28 public final class InvalidInstalledCodeException extends Exception {
    29 
    29 
       
    30     public InvalidInstalledCodeException() {
       
    31     }
       
    32 
       
    33     public InvalidInstalledCodeException(String message) {
       
    34         super(message);
       
    35     }
       
    36 
    30     private static final long serialVersionUID = -3540232440794244844L;
    37     private static final long serialVersionUID = -3540232440794244844L;
    31 }
    38 }