1 /* 2 * @(#)MalformedParameterizedTypeException.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 9 package java.lang.reflect; 10 11 /** 12 * Thrown when a semantically malformed parameterized type is 13 * encountered by a reflective method that needs to instantiate it. 14 * For example, if the number of type arguments to a parameterized type 15 * is wrong. 16 * 17 * @since 1.5 18 */ 19 public class MalformedParameterizedTypeException extends RuntimeException{} 20