Back to project page fh-android-sdk.
The source code is released under:
Copyright (c) 2014 FeedHenry Ltd, All Rights Reserved. Please refer to your contract with FeedHenry for the software license agreement. If you do not have a contract, you do not have a license to use...
If you think the Android project fh-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 com.feedhenry.sdk.exceptions; /* w w w . j a va 2 s .c o m*/ /** * This exception will be thrown if an FH API method is called before FH.init finishes. * */ public class FHNotReadyException extends Exception { private static final String mMessage = "FH SDK is not ready. You need to ensure FH.init is called."; public FHNotReadyException(){ super(mMessage); } }