FileDocCategorySizeDatePackage
UnsupportedAudioFileException.javaAPI DocJava SE 6 API1292Tue Jun 10 00:26:30 BST 2008javax.sound.sampled

UnsupportedAudioFileException

public class UnsupportedAudioFileException extends Exception
An UnsupportedAudioFileException is an exception indicating that an operation failed because a file did not contain valid data of a recognized file type and format.
author
Kara Kytle
version
1.10 05/11/17
since
1.3

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


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

param
message a string containing the error detail message


	super(message);
    
Methods Summary