- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.jnlp.UnavailableServiceException
-
- All Implemented Interfaces:
Serializable
public class UnavailableServiceException extends Exception
TheUnavailableServiceException
is thrown by theServiceManager
when a non-existing or unavailable service is looked up.- Since:
- 1.4.2
- See Also:
ServiceManager
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnavailableServiceException()
Constructs anUnavailableServiceException
withnull
as its error detail message.UnavailableServiceException(String msg)
Constructs anUnavailableServiceException
with the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnavailableServiceException
public UnavailableServiceException()
Constructs anUnavailableServiceException
withnull
as its error detail message.
-
UnavailableServiceException
public UnavailableServiceException(String msg)
Constructs anUnavailableServiceException
with the specified detail message. The error message strings
can later be retrieved by the
method of classThrowable.getMessage()
java.lang.Throwable
.- Parameters:
msg
- the detail message.
-
-