TooManyListenersExceptionpublic 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. |
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.
super(detailMessage);
|
|