You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
680 B
46 lines
680 B
/*
|
|
* Copyright (c) 1997, 1998, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE 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
|
|
*/
|
|
class StateInvariantError extends Error
|
|
{
|
|
/**
|
|
* Creates a new StateInvariantFailure object.
|
|
*
|
|
* @param s a string indicating the assertion that failed
|
|
*/
|
|
public StateInvariantError(String s) {
|
|
super(s);
|
|
}
|
|
|
|
}
|