📄 wrongthreadexception.java
字号:
/* ver: 0.1, date 19-12-2007 by Marcel Hekman
* - Two constructors.
*/
package mazeAssignment;
/**
* An exception designed to signal when a function is called from the wrong thread.
* Should generally not be caught and therefore extends RuntimeException.
* @author Hekman
*/
public class WrongThreadException extends RuntimeException
{
private static final long serialVersionUID = 1L;
public WrongThreadException()
{ }
public WrongThreadException(String message)
{
super(message);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -