📄 crtimeexception.java
字号:
/**
* Classroom Scheduler
* Copyright (C) 2004 Colin Archibald, Ph.D.
* https://sourceforge.net/projects/cr-scheduler/
*
* Licensed under the Academic Free License version 2.0
*/
package resources;
/**
* Class to define an exception when using CRTime class, and TimeSlot
*/
public class CRTimeException extends Exception {
public CRTimeException() {
super("Error while using CRTime class.");
}
/**
* Constructor declaration
*
* @param s
*
*/
public CRTimeException(String s) {
super(s); // Call the base class constructor
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -