FileDocCategorySizeDatePackage
TooManyListenersException.javaAPI DocAndroid 1.5 API1737Wed May 06 22:41:04 BST 2009java.util

TooManyListenersException

public class TooManyListenersException extends Exception
A {@code TooManyListenersException} is thrown when an attempt is made to add more than one listener to an event source which only supports a single listener. It is also thrown when the same listener is added more than once.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public TooManyListenersException()
Constructs a new {@code TooManyListenersException} with the current stack trace filled in.


                     
      
        super();
    
public TooManyListenersException(String detailMessage)
Constructs a new {@code TooManyListenersException} with the stack trace and message filled in.

param
detailMessage the detail message for the exception.

        super(detailMessage);
    
Methods Summary