source: trunk/src_apollo/org/apollo/audio/AudioFormatNotSupportedException.java@ 315

Last change on this file since 315 was 315, checked in by bjn8, 16 years ago

Apollo spin-off added

File size: 502 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 protected static final long serialVersionUID = 0L;
10
11 public AudioFormatNotSupportedException() {
12 super();
13 }
14
15 public AudioFormatNotSupportedException(String message) {
16 super(message);
17 }
18
19 public AudioFormatNotSupportedException(String message, Exception inner) {
20 super(message, inner);
21 }
22}
Note: See TracBrowser for help on using the repository browser.