Save This Page
Home » openjdk-7 » java » lang » annotation » [javadoc | source]
    1   /*
    2    * Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
    3    * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    4    *
    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
    7    * published by the Free Software Foundation.  Sun designates this
    8    * particular file as subject to the "Classpath" exception as provided
    9    * by Sun in the LICENSE file that accompanied this code.
   10    *
   11    * This code is distributed in the hope that it will be useful, but WITHOUT
   12    * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   13    * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
   14    * version 2 for more details (a copy is included in the LICENSE file that
   15    * accompanied this code).
   16    *
   17    * You should have received a copy of the GNU General Public License version
   18    * 2 along with this work; if not, write to the Free Software Foundation,
   19    * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
   20    *
   21    * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
   22    * CA 95054 USA or visit www.sun.com if you need additional information or
   23    * have any questions.
   24    */
   25   
   26   package java.lang.annotation;
   27   
   28   /**
   29    * Thrown when the annotation parser attempts to read an annotation
   30    * from a class file and determines that the annotation is malformed.
   31    *
   32    * @author  Josh Bloch
   33    * @since   1.5
   34    */
   35   public class AnnotationFormatError extends Error {
   36       /**
   37        * Constructs a new <tt>AnnotationFormatError</tt> with the specified
   38        * detail message.
   39        *
   40        * @param   message   the detail message.
   41        */
   42       public AnnotationFormatError(String message) {
   43           super(message);
   44       }
   45   
   46       /**
   47        * Constructs a new <tt>AnnotationFormatError</tt> with the specified
   48        * detail message and cause.  Note that the detail message associated
   49        * with <code>cause</code> is <i>not</i> automatically incorporated in
   50        * this error's detail message.
   51        *
   52        * @param  message the detail message
   53        * @param  cause the cause (A <tt>null</tt> value is permitted, and
   54        *     indicates that the cause is nonexistent or unknown.)
   55        */
   56       public AnnotationFormatError(String message, Throwable cause) {
   57           super(message, cause);
   58       }
   59   
   60   
   61       /**
   62        * Constructs a new <tt>AnnotationFormatError</tt> with the specified
   63        * cause and a detail message of
   64        * <tt>(cause == null ? null : cause.toString())</tt> (which
   65        * typically contains the class and detail message of <tt>cause</tt>).
   66        *
   67        * @param  cause the cause (A <tt>null</tt> value is permitted, and
   68        *     indicates that the cause is nonexistent or unknown.)
   69        */
   70       public AnnotationFormatError(Throwable cause) {
   71           super(cause);
   72       }
   73   }

Save This Page
Home » openjdk-7 » java » lang » annotation » [javadoc | source]