src/java.base/share/classes/java/lang/VerifyError.java
branchdatagramsocketimpl-branch
changeset 58678 9cf78a70fa4f
parent 47216 71c04702a3d5
child 58679 9c3209ff7550
equal deleted inserted replaced
58677:13588c901957 58678:9cf78a70fa4f
     1 /*
     1 /*
     2  * Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1995, 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
    33  * @author  unascribed
    33  * @author  unascribed
    34  * @since   1.0
    34  * @since   1.0
    35  */
    35  */
    36 public
    36 public
    37 class VerifyError extends LinkageError {
    37 class VerifyError extends LinkageError {
       
    38     @java.io.Serial
    38     private static final long serialVersionUID = 7001962396098498785L;
    39     private static final long serialVersionUID = 7001962396098498785L;
    39 
    40 
    40     /**
    41     /**
    41      * Constructs an <code>VerifyError</code> with no detail message.
    42      * Constructs an {@code VerifyError} with no detail message.
    42      */
    43      */
    43     public VerifyError() {
    44     public VerifyError() {
    44         super();
    45         super();
    45     }
    46     }
    46 
    47 
    47     /**
    48     /**
    48      * Constructs an <code>VerifyError</code> with the specified detail message.
    49      * Constructs an {@code VerifyError} with the specified detail message.
    49      *
    50      *
    50      * @param   s   the detail message.
    51      * @param   s   the detail message.
    51      */
    52      */
    52     public VerifyError(String s) {
    53     public VerifyError(String s) {
    53         super(s);
    54         super(s);