TooManyListenersExceptionNameTooManyListenersExceptionSynopsis
DescriptionA TooManyListenersException is thrown to indicate that more than one listener is registered with a unicast event source. Normally, an event source multicasts to all registered listeners. In some special cases, however, an event source is unicast, meaning it only sends events to a single listener. This exception is thrown if more than one listener tries to register. Class Summary
public class java.util.TooManyListenersException extends java.lang.Exception { // Constructors public TooManyListenersException(); public TooManyListenersException(String s); } ConstructorsTooManyListenersExceptionpublic TooManyListenersException()
public TooManyListenersException(String s)
Inherited Methods
See AlsoEventObject, EventListener, Exception |
|