src/jdk.jdi/share/classes/com/sun/jdi/connect/VMStartException.java
changeset 58673 06cc25fe0ca3
parent 47216 71c04702a3d5
equal deleted inserted replaced
58669:931ec3339786 58673:06cc25fe0ca3
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 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
    36  */
    36  */
    37 public class VMStartException extends Exception {
    37 public class VMStartException extends Exception {
    38 
    38 
    39     private static final long serialVersionUID = 6408644824640801020L;
    39     private static final long serialVersionUID = 6408644824640801020L;
    40 
    40 
       
    41     @SuppressWarnings("serial") // Not statically typed as Serializable
    41     Process process;
    42     Process process;
    42 
    43 
    43     public VMStartException(Process process) {
    44     public VMStartException(Process process) {
    44         super();
    45         super();
    45         this.process = process;
    46         this.process = process;