FileDocCategorySizeDatePackage
ReceiverCallNotAllowedException.javaAPI DocAndroid 1.5 API1195Wed May 06 22:41:54 BST 2009android.content

ReceiverCallNotAllowedException

public class ReceiverCallNotAllowedException extends android.util.AndroidRuntimeException
This exception is thrown from {@link Context#registerReceiver} and {@link Context#bindService} when these methods are being used from an {@link BroadcastReceiver} component. In this case, the component will no longer be active upon returning from receiving the Intent, so it is not valid to use asynchronous APIs.

Fields Summary
Constructors Summary
public ReceiverCallNotAllowedException(String msg)

        super(msg);
    
Methods Summary