KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > lang > reflect > GenericSignatureFormatError


1 /*
2  * @(#)GenericSignatureFormatError.java 1.2 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package java.lang.reflect;
9
10
11 /**
12  * Thrown when a syntactically malformed signature attribute is
13  * encountered by a reflective method that needs to interpret the
14  * generic signature information for a type, method or constructor.
15  *
16  * @since 1.5
17  */

18 public class GenericSignatureFormatError extends ClassFormatError JavaDoc{}
19
Popular Tags