/*
* @(#)StateInvariantError.java 1.17 03/12/19
*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package javax.swing.text;
/**
* This exception is to report the failure of state invarient
* assertion that was made. This indicates an internal error
* has occurred.
*
* @author Timothy Prinzing
* @version 1.17 12/19/03
*/
class StateInvariantError extends Error
{
/**
* Creates a new StateInvariantFailure object.
*
* @param s a string indicating the assertion that failed
*/
public StateInvariantError(String s) {
super(s);
}
}
|