Back to project page Reddit-Underground.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project Reddit-Underground 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.cd.reddit.exception; //from w w w. ja va 2s.co m import com.cd.reddit.RedditException; public class RedditRateLimitException extends RedditException { /** * */ private static final long serialVersionUID = 2995616766053622672L; public RedditRateLimitException(Throwable cause) { super(cause); } public RedditRateLimitException(String message) { super(message); } }