configfileexception.java

来自「21天学通java的示例程序源代码」· Java 代码 · 共 21 行

JAVA
21
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?