⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configfileexception.java

📁 21天学通java的示例程序源代码
💻 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 + -