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

📄 parameternotfoundexception.java

📁 很好的文件处理程序
💻 JAVA
字号:
// Copyright (C) 1998-2001 by Jason Hunter <jhunter_AT_acm_DOT_org>.// All rights reserved.  Use of this class is limited.// Please see the LICENSE for more information.package com.oreilly.servlet;/**  * Thrown to indicate a parameter does not exist. * * @see com.oreilly.servlet.ParameterParser * * @author <b>Jason Hunter</b>, Copyright &#169; 1998 * @version 1.0, 98/09/18 */public class ParameterNotFoundException extends Exception {  /**   * Constructs a new ParameterNotFoundException with no detail message.   */  public ParameterNotFoundException() {    super();  }  /**   * Constructs a new ParameterNotFoundException with the specified   * detail message.   *   * @param s the detail message   */  public ParameterNotFoundException(String s) {    super(s);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -