- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.jnlp.UnavailableServiceException
-
- All Implemented Interfaces:
-
Serializable
public class UnavailableServiceException extends 异常
该UnavailableServiceException
被抛出ServiceManager
当不存在或无法使用服务抬头。- 从以下版本开始:
- 1.4.2
- 另请参见:
-
ServiceManager
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 UnavailableServiceException()
构造一个UnavailableServiceException
与null
作为其错误详细消息。UnavailableServiceException(String msg)
构造具有指定详细消息的UnavailableServiceException
。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
UnavailableServiceException
public UnavailableServiceException()
构造一个UnavailableServiceException
与null
作为其错误详细信息。
-
UnavailableServiceException
public UnavailableServiceException(String msg)
构造具有指定详细消息的UnavailableServiceException
。 错误消息字符串s
可以稍后通过类java.lang.Throwable
的
方法检索。Throwable.getMessage()
- 参数
-
msg
- 详细信息。
-
-