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