public class ServiceRegistrationException extends RemotingException
| Modifier and Type | Field and Description |
|---|---|
private static long |
serialVersionUID |
| Constructor and Description |
|---|
ServiceRegistrationException()
Constructs a ServiceRegistrationException with no detail message.
|
ServiceRegistrationException(java.lang.String msg)
Constructs a ServiceRegistrationException with the specified detail message.
|
ServiceRegistrationException(java.lang.String msg,
java.lang.Throwable cause)
Constructs a ServiceRegistrationException with the specified detail message and cause.
|
ServiceRegistrationException(java.lang.Throwable cause)
Constructs a ServiceRegistrationException with the specified cause.
|
private static final long serialVersionUID
public ServiceRegistrationException()
initCause.public ServiceRegistrationException(java.lang.String msg)
initCause.msg - the detail messagepublic ServiceRegistrationException(java.lang.Throwable cause)
(cause == null ? null : cause.toString())(which typically contains the class and detail message of cause).
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method)public ServiceRegistrationException(java.lang.String msg,
java.lang.Throwable cause)
msg - the detail messagecause - the cause (which is saved for later retrieval by the Throwable.getCause() method)