Back to project page android.
The source code is released under:
Apache License
If you think the Android project 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 com.github.digin.android.exceptions; /*from w w w . ja v a 2 s .com*/ /** * Thrown when a backing data store expects a class of some type * but is given something different. * <p/> * Created by mike on 7/11/14. */ public class InvalidClassException extends RuntimeException { public InvalidClassException() { super(); } public InvalidClassException(String message) { super(message); } }