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