776N/A/*
776N/A * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
776N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
776N/A *
776N/A * This code is free software; you can redistribute it and/or modify it
776N/A * under the terms of the GNU General Public License version 2 only, as
776N/A * published by the Free Software Foundation. Oracle designates this
776N/A * particular file as subject to the "Classpath" exception as provided
776N/A * by Oracle in the LICENSE file that accompanied this code.
776N/A *
776N/A * This code is distributed in the hope that it will be useful, but WITHOUT
776N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
776N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
776N/A * version 2 for more details (a copy is included in the LICENSE file that
776N/A * accompanied this code).
776N/A *
776N/A * You should have received a copy of the GNU General Public License version
776N/A * 2 along with this work; if not, write to the Free Software Foundation,
776N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
776N/A *
776N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
776N/A * or visit www.oracle.com if you need additional information or have any
776N/A * questions.
776N/A */
776N/A
776N/Apackage sun.reflect.annotation;
776N/A
776N/A/**
776N/A * An instance of this class is stored in an AnnotationInvocationHandler's
776N/A * "memberValues" map in lieu of a value for an annotation member that
776N/A * cannot be returned due to some exceptional condition (typically some
776N/A * form of illegal evolution of the annotation class). The ExceptionProxy
776N/A * instance describes the exception that the dynamic proxy should throw if
776N/A * it is queried for this member.
776N/A *
776N/A * @author Josh Bloch
776N/A * @since 1.5
776N/A */
776N/Apublic abstract class ExceptionProxy implements java.io.Serializable {
776N/A protected abstract RuntimeException generateException();
776N/A}
776N/A