Package net.jini.core.event
Class UnknownEventException
java.lang.Object
java.lang.Throwable
java.lang.Exception
net.jini.core.event.UnknownEventException
- All Implemented Interfaces:
Serializable
An exception thrown when the recipient of a RemoteEvent does not recognize the combination of the
event identifier and the event source as something in which it is interested. Throwing this
exception has the effect of asking the sender to not send further notifications of this kind of
event from this source in the future.
- Since:
- 1.0
- Author:
- Sun Microsystems, Inc.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an UnknownEventException with no detail message.UnknownEventException(String reason) Constructs an UnknownEventException with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnknownEventException
Constructs an UnknownEventException with the specified detail message.- Parameters:
reason- a String containing a detail message
-
UnknownEventException
public UnknownEventException()Constructs an UnknownEventException with no detail message.
-