Lines Matching refs:UnsupportedAudioFileException

40 import javax.sound.sampled.UnsupportedAudioFileException;
73 * @throws UnsupportedAudioFileException if the stream does not point to valid audio
79 public AudioFileFormat getAudioFileFormat(InputStream stream) throws UnsupportedAudioFileException, IOException {
109 throw new UnsupportedAudioFileException("not an AU file");
179 throw new UnsupportedAudioFileException("not a valid AU file");
209 * @throws UnsupportedAudioFileException if the URL does not point to valid audio
213 public AudioFileFormat getAudioFileFormat(URL url) throws UnsupportedAudioFileException, IOException {
225 fileFormat = getAudioFileFormat( bis ); // throws UnsupportedAudioFileException
240 * @throws UnsupportedAudioFileException if the File does not point to valid audio
244 public AudioFileFormat getAudioFileFormat(File file) throws UnsupportedAudioFileException, IOException {
255 fileFormat = getAudioFileFormat( bis ); // throws UnsupportedAudioFileException
277 * @throws UnsupportedAudioFileException if the stream does not point to valid audio
283 public AudioInputStream getAudioInputStream(InputStream stream) throws UnsupportedAudioFileException, IOException {
291 fileFormat = getAudioFileFormat( stream ); // throws UnsupportedAudioFileException, IOException
320 * @throws UnsupportedAudioFileException if the URL does not point to valid audio
324 public AudioInputStream getAudioInputStream(URL url) throws UnsupportedAudioFileException, IOException {
351 * @throws UnsupportedAudioFileException if the File does not point to valid audio
355 public AudioInputStream getAudioInputStream(File file) throws UnsupportedAudioFileException, IOException {