addsupvpairexception.java
来自「一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs」· Java 代码 · 共 35 行
JAVA
35 行
/*
* AddSupvPairException.java
*
* Created on 2001年7月12日, 下午1:42
*/
package com.gs.db;
/**
* 当增加一对特定监督关系失败时,抛出此异常
* Thrown when adding a new special-supversion pairs,
* usually the pair already exists.
* @author sunjian
* @version
*/
public class AddSupvPairException extends java.lang.Exception {
/**
* Creates new <code>AddSupvPairException</code> without detail message.
*/
public AddSupvPairException() {
}
/**
* Constructs an <code>AddSupvPairException</code> with the specified detail message.
* @param msg the detail message.
*/
public AddSupvPairException(String msg) {
super(msg);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?