Example usage for twitter4j TwitterMethod SHOW_USER

List of usage examples for twitter4j TwitterMethod SHOW_USER

Introduction

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

Prototype

TwitterMethod SHOW_USER

To view the source code for twitter4j TwitterMethod SHOW_USER.

Click Source Link

Usage

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

License:Apache License

@Override
public void onException(TwitterException te, TwitterMethod method) {
    if (method == TwitterMethod.SHOW_USER) {
        AIR.log("Error retrieving user info " + te.getMessage());
        AIR.dispatchEvent(AIRTwitterEvent.USER_QUERY_ERROR,
                StringUtils.getEventErrorJSON(mCallbackID, te.getMessage()));
    }//w  w w .j  a va 2 s . c  o  m
}