source: trunk/src/org/apollo/audio/AudioFormatNotSupportedException.java@ 1102

Last change on this file since 1102 was 1102, checked in by davidb, 6 years ago

Reworking of the code-base to separate logic from graphics. This version of Expeditee now supports a JFX graphics as an alternative to SWING

File size: 505 bytes
Line 
1package org.apollo.audio;
2
3/**
4 * An audio format is not supported by a specific mixer configuration.
5 *
6 * @author Brook Novak
7 */
8public class AudioFormatNotSupportedException extends Exception
9{
10 protected static final long serialVersionUID = 0L;
11
12 public AudioFormatNotSupportedException()
13 {
14 super();
15 }
16
17 public AudioFormatNotSupportedException(String message)
18 {
19 super(message);
20 }
21
22 public AudioFormatNotSupportedException(String message, Exception inner)
23 {
24 super(message, inner);
25 }
26}
Note: See TracBrowser for help on using the repository browser.