⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crtimeexception.java

📁 The program is used for Classroom Scheduling for tutors and students. It contain gui tools for mana
💻 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 + -