Back to project page rss-parser.
The source code is released under:
Copyright (c) 2014 Artem Gapchenko Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the So...
If you think the Android project rss-parser 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 aga.rssparser; /* w w w .ja va 2s . com*/ /** * @author artem * Created on 16.08.14. */ public class RSSReadException extends Exception { public RSSReadException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } }