Example usage for android.os AsyncTask toString

List of usage examples for android.os AsyncTask toString

Introduction

In this page you can find the example usage for android.os AsyncTask toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:com.github.gorbin.asne.core.SocialNetwork.java

protected void checkRequestState(AsyncTask request) throws SocialNetworkException {
    if (request != null) {
        throw new SocialNetworkException(request.toString() + "Request is already running");
    }/*www.  j av  a  2 s  .  c  om*/
}