Back to project page beansight-mobile-android.
The source code is released under:
Apache License
If you think the Android project beansight-mobile-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.beansight.android.api; /*from w w w .j a v a 2 s. com*/ public class NotAuthenticatedException extends Exception { public NotAuthenticatedException() { super(); } public NotAuthenticatedException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public NotAuthenticatedException(String detailMessage) { super(detailMessage); } public NotAuthenticatedException(Throwable throwable) { super(throwable); } }