- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.sound.sampled.LineUnavailableException
-
- All Implemented Interfaces:
-
Serializable
public class LineUnavailableException extends 异常
ALineUnavailableException
是一个例外,指示由于不可用而无法打开该行。 当请求的行已被另一个应用程序使用时,这种情况最为普遍。- 从以下版本开始:
- 1.3
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 LineUnavailableException()
构造一个LineUnavailableException
,其中有null
作为其错误详细消息。LineUnavailableException(String message)
构造具有指定详细消息的LineUnavailableException
。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
LineUnavailableException
public LineUnavailableException()
构造一个LineUnavailableException
,其中有null
作为其错误详细消息。
-
LineUnavailableException
public LineUnavailableException(String message)
构造一个具有指定详细消息的LineUnavailableException
。- 参数
-
message
- 包含错误详细信息的字符串
-
-