jdk/src/share/classes/java/lang/annotation/IncompleteAnnotationException.java
changeset 1320 2412b1562801
parent 2 90ce3da70b43
child 3630 28237c1f0c41
equal deleted inserted replaced
687:874e25a9844a 1320:2412b1562801
     1 /*
     1 /*
     2  * Copyright 2003-2004 Sun Microsystems, Inc.  All Rights Reserved.
     2  * Copyright 2003-2008 Sun Microsystems, Inc.  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.  Sun designates this
     7  * published by the Free Software Foundation.  Sun designates this
    33  *
    33  *
    34  * @author  Josh Bloch
    34  * @author  Josh Bloch
    35  * @since 1.5
    35  * @since 1.5
    36  */
    36  */
    37 public class IncompleteAnnotationException extends RuntimeException {
    37 public class IncompleteAnnotationException extends RuntimeException {
       
    38     private static final long serialVersionUID = 8445097402741811912L;
       
    39 
    38     private Class annotationType;
    40     private Class annotationType;
    39     private String elementName;
    41     private String elementName;
    40 
    42 
    41 
    43 
    42     /**
    44     /**