/*
* @(#)MalformedParameterizedTypeException.java 1.3 05/11/17
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package java.lang.reflect;
/**
* Thrown when a semantically malformed parameterized type is
* encountered by a reflective method that needs to instantiate it.
* For example, if the number of type arguments to a parameterized type
* is wrong.
*
* @since 1.5
*/
public class MalformedParameterizedTypeException extends RuntimeException{}