📄 configfileexception.java
字号:
// ConfigFileException.java
package com.wrox.httpserver;
/**
* This exception is thrown when an HTTPServer configuration file
* cannot be read in properly so that all required parameters are
* initialized.
*/
class ConfigFileException extends Exception {
/**
* Constructs a ConfigFileException with the specified detail message,
* which provides more information about why this exception has been
* thrown.
*/
public ConfigFileException(String msg) {
super(msg);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -