JOAL v2.6.0-rc-20250712
JOAL, OpenAL® API Binding for Java™ (public API).
UnsupportedAudioFileException.java
Go to the documentation of this file.
1package com.jogamp.openal;
2
3public class UnsupportedAudioFileException extends Exception {
4
5 public UnsupportedAudioFileException (final String message) {
6 super(message);
7 }
8
10 super();
11 }
12
13 public UnsupportedAudioFileException (final String message, final Throwable cause) {
14 super(message, cause);
15 }
16
17 public UnsupportedAudioFileException (final Throwable cause) {
18 super(cause);
19 }
20
21}
UnsupportedAudioFileException(final String message, final Throwable cause)