1. /*
  2. * @(#)FormatterClosedException.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.util;
  8. /**
  9. * Unchecked exception thrown when the formatter has been closed.
  10. *
  11. * <p> Unless otherwise specified, passing a <tt>null</tt> argument to any
  12. * method or constructor in this class will cause a {@link
  13. * NullPointerException} to be thrown.
  14. *
  15. * @version 1.2, 12/19/03
  16. * @since 1.5
  17. */
  18. public class FormatterClosedException extends IllegalStateException {
  19. private static final long serialVersionUID = 18111216L;
  20. /**
  21. * Constructs an instance of this class.
  22. */
  23. public FormatterClosedException() { }
  24. }