📄 computerexception.java
字号:
/**
*
*/
package org.langsin.computer.exception;
/**
* <p>
* Title: 浪曦视频在线
* </p>
* <p>
* Description: 电脑维修管理系统
* </p>
* <p>
* Copyright: Copyright (c) 2007
* </p>
* <p>
* Company: langsin.com
* </p>
*
* @author [小L]
* @version 1.0
*
*/
@SuppressWarnings("serial")
public class ComputerException extends Exception {
public ComputerException() {
super();
}
public ComputerException(String message) {
super(message);
}
public ComputerException(Throwable cause) {
super(cause);
}
public ComputerException(String message, Throwable cause) {
super(message, cause);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -