jdk/src/share/classes/javax/swing/tree/ExpandVetoException.java
changeset 23697 e556a715949f
parent 23010 6dadb192ad81
child 25154 a4252397d312
equal deleted inserted replaced
23696:7deff68428ef 23697:e556a715949f
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 2014, 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  * in <em>The Java Tutorial</em>
    34  * in <em>The Java Tutorial</em>
    35  * for further information and examples.
    35  * for further information and examples.
    36  *
    36  *
    37  * @author Scott Violet
    37  * @author Scott Violet
    38  */
    38  */
       
    39 @SuppressWarnings("serial") // Same-version serialization only
    39 public class ExpandVetoException extends Exception {
    40 public class ExpandVetoException extends Exception {
    40     /** The event that the exception was created for. */
    41     /** The event that the exception was created for. */
    41     protected TreeExpansionEvent      event;
    42     protected TreeExpansionEvent      event;
    42 
    43 
    43     /**
    44     /**