1 /* 2 * @(#)UnsupportedAudioFileException.java 1.9 03/12/19 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package javax.sound.sampled; 9 10 /** 11 * An <code>UnsupportedAudioFileException</code> is an exception indicating that an 12 * operation failed because a file did not contain valid data of a recognized file 13 * type and format. 14 * 15 * @author Kara Kytle 16 * @version 1.9 03/12/19 17 * @since 1.3 18 */ 19 /* 20 * An <code>UnsupportedAudioFileException</code> is an exception indicating that an 21 * operation failed because a file did not contain valid data of a recognized file 22 * type and format. 23 * 24 * @version 1.9 03/12/19 25 * @author Kara Kytle 26 */ 27 28 public class UnsupportedAudioFileException extends Exception { 29 30 /** 31 * Constructs a <code>UnsupportedAudioFileException</code> that has 32 * <code>null</code> as its error detail message. 33 */ 34 public UnsupportedAudioFileException() { 35 36 super(); 37 } 38 39 40 /** 41 * Constructs a <code>UnsupportedAudioFileException</code> that has 42 * the specified detail message. 43 * 44 * @param message a string containing the error detail message 45 */ 46 public UnsupportedAudioFileException(String message) { 47 48 super(message); 49 } 50 } 51 52