Back to project page rss-reader.
The source code is released under:
GNU General Public License
If you think the Android project rss-reader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.thecyanapps.rssreader; /* www . j a v a2 s . c om*/ public class RssException extends Exception { private static final long serialVersionUID = 1L; private String msg; public RssException(String msg) { this.msg = msg; } @Override public String getMessage() { return msg; } }