📄 generalexception.java
字号:
/**
* GeneralException.java 07/01/2002,
* Author:
*
* Copyright (c) 2002 Censoft Corp.
* Beijing China
* All rights reserved.
*
* Modifier:
* Time:
***/
package com.gs.util;
public class GeneralException
extends Exception {
/**
* Default constructor. Takes no arguments
*/
public GeneralException() {
super();
}
/**
* Constructor
* @param Exception a string that explains what the exception condition is
*/
public GeneralException(String str) {
super(str);
}
/**
* Constructor
* @param Exception a string that explains what the exception condition is
*/
public GeneralException(Exception ex) {
super(ex.toString());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -