KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > nutch > plugin > PluginRuntimeException


1 /*
2  * Copyright (c) 2003 The Nutch Organization. All rights reserved. Use subject
3  * to the conditions in http://www.nutch.org/LICENSE.txt.
4  */

5 package net.nutch.plugin;
6 /**
7  * <code>PluginRuntimeException</code> will be thrown until a exception in the
8  * plugin managemnt occurs.
9  *
10  * @author joa23
11  */

12 public class PluginRuntimeException extends Exception JavaDoc {
13
14   public PluginRuntimeException(Throwable JavaDoc cause) {
15     super(cause);
16   }
17
18   public PluginRuntimeException(String JavaDoc message) {
19     super(message);
20   }
21 }
22
Popular Tags