pluginruntimeexception.java

来自「爬虫数据的改进,并修正了一些bug」· Java 代码 · 共 22 行

JAVA
22
字号
/*
 * Copyright (c) 2003 The Nutch Organization. All rights reserved. Use subject
 * to the conditions in http://www.nutch.org/LICENSE.txt.
 */
package net.nutch.plugin;
/**
 * <code>PluginRuntimeException</code> will be thrown until a exception in the
 * plugin managemnt occurs.
 * 
 * @author joa23
 */
public class PluginRuntimeException extends Exception {

  public PluginRuntimeException(Throwable cause) {
    super(cause);
  }

  public PluginRuntimeException(String message) {
    super(message);
  }
}

⌨️ 快捷键说明

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