📄 illegalrectangleexception.java
字号:
/**
* Title: IllegalRectangleException.java
* Description: A class containing the exception for signalling that an attempt was made to create an
* illegal rectangle.
*
* Copyright: Copyright (c) 2006
* @author Q Jin
* @version 1.0
*/
public class IllegalRectangleException extends RuntimeException{
// this is a default IllegalRectangleException method
public IllegalRectangleException(){
System.err.println("The width and the height are the same!");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -