01: //$Id: RSSException.java,v 1.5 2004/03/25 10:09:10 taganaka Exp $
02: package org.gnu.stealthp.rsslib;
03:
04: /**
05: * RSSlib exception handler.
06: *
07: * <blockquote>
08: * <em>This module, both source code and documentation, is in the
09: * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
10: * </blockquote>
11: *
12: * @since RSSLIB4J 0.1
13: * @author Francesco aka 'Stealthp' stealthp[@]stealthp.org
14: * @version 0.2
15: */
16:
17: public class RSSException extends Exception {
18:
19: public RSSException(String err) {
20: super(err);
21: }
22:
23: }
|