FileDocCategorySizeDatePackage
LineUnavailableException.javaAPI DocJava SE 5 API1370Fri Aug 26 14:57:50 BST 2005javax.sound.sampled

LineUnavailableException

public class LineUnavailableException extends Exception
A LineUnavailableException is an exception indicating that a line cannot be opened because it is unavailable. This situation arises most commonly when a requested line is already in use by another application.
author
Kara Kytle
version
1.9 03/12/19
since
1.3

Fields Summary
Constructors Summary
public LineUnavailableException()
Constructs a LineUnavailableException that has null as its error detail message.


	super();
    
public LineUnavailableException(String message)
Constructs a LineUnavailableException that has the specified detail message.

param
message a string containing the error detail message


	super(message);
    
Methods Summary