javax.naming
public class: ServiceUnavailableException [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.naming.NamingException
javax.naming.ServiceUnavailableException
All Implemented Interfaces:
Serializable
This exception is thrown when attempting to communicate with a
directory or naming service and that service is not available.
It might be unavailable for different reasons. For example,
the server might be too busy to service the request, or the server
might not be registered to service any requests, etc.
Synchronization and serialization issues that apply to NamingException
apply directly here.
- author:
Rosanna
- Lee
- author:
Scott
- Seligman
- since:
1.3
-
Constructor: |
public ServiceUnavailableException() {
super();
}
Constructs a new instance of ServiceUnavailableException.
All fields default to null. |
public ServiceUnavailableException(String explanation) {
super(explanation);
}
Constructs a new instance of ServiceUnavailableException using an
explanation. All other fields default to null. Parameters:
explanation - Possibly null additional detail about this exception.
Also see:
- java.lang.Throwable#getMessage
|
Methods from javax.naming.NamingException: |
---|
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toString |
Methods from java.lang.Throwable: |
---|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getStackTraceDepth, getStackTraceElement, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |