- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.swing.text.BadLocationException
-
- All Implemented Interfaces:
-
Serializable
public class BadLocationException extends 异常
此异常是报告文档模型中的不良位置(即尝试引用不存在的位置)。警告:此类的序列化对象与将来的Swing版本不兼容。 当前的序列化支持适用于运行相同版本的Swing的应用程序之间的短期存储或RMI。 从1.4版本开始,所有JavaBeans的长期存储支持已被添加到
java.beans
软件包中。 请参阅XMLEncoder
。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 BadLocationException(String s, int offs)
创建一个新的BadLocationException对象。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 int
offsetRequested()
返回文档中不合法的偏移量。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
BadLocationException
public BadLocationException(String s, int offs)
创建一个新的BadLocationException对象。- 参数
-
s
- 一个字符串,指示参数有什么问题 -
offs
- 在请求的文档中的偏移量> = 0
-
-