1. /*
  2. * @(#)IllegalFormatException.java 1.3 04/04/21
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.util;
  8. /**
  9. * Unchecked exception thrown when a format string contains an illegal syntax
  10. * or a format specifier that is incompatible with the given arguments. Only
  11. * explicit subtypes of this exception which correspond to specific errors
  12. * should be instantiated.
  13. *
  14. * @version 1.3, 04/21/04
  15. * @since 1.5
  16. */
  17. public class IllegalFormatException extends IllegalArgumentException {
  18. private static final long serialVersionUID = 18830826L;
  19. // package-private to prevent explicit instantiation
  20. IllegalFormatException() { }
  21. }