Package com.iplanet.services.comm.client
Class AlreadyRegisteredException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.iplanet.services.comm.client.AlreadyRegisteredException
-
- All Implemented Interfaces:
Serializable
public class AlreadyRegisteredException extends Exception
In order for high level services and applications to receive notifications from PLL, a notification handler for a service has to be registered in the PLL. If a handler for a service already exists during the registration, AlreadyRegisteredException is thrown.- See Also:
PLLClient, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AlreadyRegisteredException(String msg)Constructs an instance of theAlreadyRegisteredExceptionclass.AlreadyRegisteredException(Throwable t)Constructs an instance of theAlreadyRegisteredExceptionclass.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
AlreadyRegisteredException
public AlreadyRegisteredException(String msg)
Constructs an instance of theAlreadyRegisteredExceptionclass.- Parameters:
msg- The message provided by the object which is throwing the exception
-
AlreadyRegisteredException
public AlreadyRegisteredException(Throwable t)
Constructs an instance of theAlreadyRegisteredExceptionclass.- Parameters:
t- The Throwable object provided by the object which is throwing the exception
-
-