📄 componentregistrationexception.java
字号:
/*
* ComponentRegistrationException.java
*
* Created on 2001年7月13日, 下午1:18
*/
package com.gs.db;
/**
* Thrown when component registration fails.
*
* @see ComponentManager
*/
public class ComponentRegistrationException extends java.lang.Exception {
/**
* Creates new <code>ComponentRegistrationException</code> without detail message.
*/
public ComponentRegistrationException() {
}
/**
* Constructs an <code>ComponentRegistrationException</code> with the specified detail message.
* @param msg the detail message.
*/
public ComponentRegistrationException(String msg) {
super(msg);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -