home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 25 / CDROM25.iso / Share / prog / VJ11 / VJTRIAL.EXE / IE30Java.exe / classd.exe / sun / audio / InvalidAudioFormatException.java < prev    next >
Encoding:
Java Source  |  1997-01-27  |  1.3 KB  |  42 lines

  1. /*
  2. /*
  3.  * @(#)InvalidAudioFormatException.java    1.1 95/08/22 Thomas Ball
  4.  *
  5.  * Copyright (c) 1995 Sun Microsystems, Inc. All Rights Reserved.
  6.  *
  7.  * Permission to use, copy, modify, and distribute this software
  8.  * and its documentation for NON-COMMERCIAL purposes and without
  9.  * fee is hereby granted provided that this copyright notice
  10.  * appears in all copies. Please refer to the file "copyright.html"
  11.  * for further important copyright and licensing information.
  12.  *
  13.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  14.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  15.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  16.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  17.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  18.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  19.  */
  20.  
  21. package sun.audio;
  22. import java.io.IOException;
  23.  
  24. /**
  25.  * Signals an invalid audio stream for the stream handler.
  26.  */
  27. class InvalidAudioFormatException extends IOException {
  28.     /**
  29.      * Constructor.
  30.      */
  31.     public InvalidAudioFormatException() {
  32.     super();
  33.     }
  34.  
  35.     /**
  36.      * Constructor with a detail message.
  37.      */
  38.     public InvalidAudioFormatException(String s) {
  39.     super(s);
  40.     }
  41. }
  42.