FileDocCategorySizeDatePackage
UnsupportedAudioFileException.javaAPI DocJava SE 5 API1289Fri Aug 26 14:57:50 BST 2005javax.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.9 03/12/19
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