java.util
Class TooManyListenersException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.util.TooManyListenersException
public class
TooManyListenersExceptionextends
Exception This exception is part of the java event model. It is thrown if an
event listener is added via the addXyzEventListener method, but the
object doesn't support any more listeners, e.g. it only supports a
single event listener.
Since:Authors:- Jochen Hoenicke
- Warren Levy <warrenl@cygnus.com>
See Also:
TooManyListenersException
public TooManyListenersException()
Constructs a TooManyListenersException with no detail message.
TooManyListenersException
public TooManyListenersException(java.lang.String detail)
Constructs a TooManyListenersException with a detail message.
Parameters: