com.jogamp.openal.UnsupportedAudioFileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joal Show documentation
Show all versions of joal Show documentation
Java™ Binding for the OpenAL® API
package com.jogamp.openal;
public class UnsupportedAudioFileException extends Exception {
public UnsupportedAudioFileException (final String message) {
super(message);
}
public UnsupportedAudioFileException () {
super();
}
public UnsupportedAudioFileException (final String message, final Throwable cause) {
super(message, cause);
}
public UnsupportedAudioFileException (final Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy