Back to project page transloadit-Android-sdk.
The source code is released under:
MIT License
If you think the Android project transloadit-Android-sdk 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 hu.szabot.transloadit.exceptions; //from w w w . j ava 2 s .co m /**Thrown when the data not parseable with the given parser*/ @SuppressWarnings("serial") public class NotParseableException extends Exception { public NotParseableException() { super("Data not parseable with the given parser."); } }