Back to project page ShadowCraft_Android.
The source code is released under:
GNU General Public License
If you think the Android project ShadowCraft_Android 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 core; // w w w . jav a2 s.c o m /** * Base class for all our exceptions. All exceptions we generate should either * use or subclass this. These exceptions are unchecked and don't propagate. */ @SuppressWarnings("serial") public class InvalidInputException extends RuntimeException { public InvalidInputException(String message) { super(message); } }