📄 alreadyloginexception.java
字号:
/*
* AlreadyLoginException.java
*
* Created on 2001年8月9日, 上午10:20
*/
package com.gs.db;
/**
* May be thrown when the some tried to log in with a userid who
* has already logged in. We once use this method to reduce the risk of
* creating inconsitent database.
*/
public class AlreadyLoginException extends java.lang.Exception {
/**
* Creates new <code>AlreadyLoginException</code> without detail message.
*/
public AlreadyLoginException() {
}
/**
* Constructs an <code>AlreadyLoginException</code> with the specified detail message.
* @param msg the detail message.
*/
public AlreadyLoginException(String msg) {
super(msg);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -