Example usage for twitter4j TwitterMethod FRIENDS_LIST

List of usage examples for twitter4j TwitterMethod FRIENDS_LIST

Introduction

In this page you can find the example usage for twitter4j TwitterMethod FRIENDS_LIST.

Prototype

TwitterMethod FRIENDS_LIST

To view the source code for twitter4j TwitterMethod FRIENDS_LIST.

Click Source Link

Usage

From source file:com.marpies.ane.twitter.functions.GetFriendsFunction.java

License:Apache License

@Override
public void onException(TwitterException te, TwitterMethod method) {
    if (method == TwitterMethod.FRIENDS_LIST) {
        AIR.dispatchEvent(AIRTwitterEvent.USERS_QUERY_ERROR,
                StringUtils.getEventErrorJSON(mCallbackID, te.getMessage()));
    }/*w  w  w .ja va  2s  . co m*/
}