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