src/java.base/share/classes/java/lang/InternalError.java
changeset 58288 48e480e56aad
parent 47216 71c04702a3d5
equal deleted inserted replaced
58287:a7f16447085e 58288:48e480e56aad
     1 /*
     1 /*
     2  * Copyright (c) 1994, 2011, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1994, 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.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    34  */
    34  */
    35 public class InternalError extends VirtualMachineError {
    35 public class InternalError extends VirtualMachineError {
    36     private static final long serialVersionUID = -9062593416125562365L;
    36     private static final long serialVersionUID = -9062593416125562365L;
    37 
    37 
    38     /**
    38     /**
    39      * Constructs an <code>InternalError</code> with no detail message.
    39      * Constructs an {@code InternalError} with no detail message.
    40      */
    40      */
    41     public InternalError() {
    41     public InternalError() {
    42         super();
    42         super();
    43     }
    43     }
    44 
    44 
    45     /**
    45     /**
    46      * Constructs an <code>InternalError</code> with the specified
    46      * Constructs an {@code InternalError} with the specified
    47      * detail message.
    47      * detail message.
    48      *
    48      *
    49      * @param   message   the detail message.
    49      * @param   message   the detail message.
    50      */
    50      */
    51     public InternalError(String message) {
    51     public InternalError(String message) {