Back to project page khandroid.
The source code is released under:
Apache License
If you think the Android project khandroid 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.khandroid.state_app; /*from w w w . j a v a2 s . c om*/ @SuppressWarnings("serial") public class InvalidAppStateException extends Exception { public InvalidAppStateException() { super(); } public InvalidAppStateException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public InvalidAppStateException(String detailMessage) { super(detailMessage); } public InvalidAppStateException(Throwable throwable) { super(throwable); } }