📄 zselectionnosupported.java
字号:
/*
* Copyright 2002 EZCell , Inc. All rights reserved.
* Version 1.0.
* Author W.John
*/
package ezcell;
/**
* DOCUMENT ME!
*
* @version 1.00
* @author W.John
*/
public class ZSelectionNoSupported extends Exception {
public ZSelectionNoSupported() {
super("such selection is not supported!");
}
public ZSelectionNoSupported(String msg) {
super(msg);
}
}
/**
* DOCUMENT ME!
*
* @version 1.00
* @author W.John
*/
class ZException extends Exception {
public ZException(String msg) {
super(msg);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -