meetingexception.java
来自「Java编写个人日程管理工具, 具有添加编辑日程和自动适应功能, 程序包含完整的」· Java 代码 · 共 29 行
JAVA
29 行
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package exception;import java.io.*;/** * 这个方法处理会议异常 * @author zouhao */public class MeetingException extends Exception{ public MeetingException(String e) { if(e.equals("already exists")) { System.out.println("The meeting you want to add is already exists!"); } if(e.equals("not exists")) { System.out.println("The meeting you want to delete is not exists!"); } if(e.equals("not yours")) { System.out.println("The meeting you want to delete is not added by you!"); } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?