java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.sound.sampled.LineUnavailableException
- 所有已实现的接口:
Serializable
LineUnavailableException 是一个异常,表示某行无法打开,因为它不可用。当请求的行已被另一个应用程序使用时,这种情况最常见。
- 自从:
- 1.3
- 参见:
-
构造方法总结
构造方法构造方法描述构造一个LineUnavailableException,其错误详细消息为null。LineUnavailableException(String message) 构造一个具有指定详细消息的LineUnavailableException。 -
方法总结
在类 java.lang.Throwable 中声明的方法
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
构造方法详细信息
-
LineUnavailableException
public LineUnavailableException()构造一个LineUnavailableException,其错误详细消息为null。 -
LineUnavailableException
构造一个具有指定详细消息的LineUnavailableException。- 参数:
message- 包含错误详细信息的字符串
-