Package com.jogamp.openal
Class ALException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.jogamp.openal.ALException
-
- All Implemented Interfaces:
Serializable
public class ALException extends RuntimeException
A generic exception for OpenAL errors used throughout the binding as a substitute forRuntimeException
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ALException()
Constructs an ALException object.ALException(String message)
Constructs an ALException object with the specified detail message.ALException(String message, Throwable cause)
Constructs an ALException object with the specified detail message and root cause.ALException(Throwable cause)
Constructs an ALException object with the specified root cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ALException
public ALException()
Constructs an ALException object.
-
ALException
public ALException(String message)
Constructs an ALException object with the specified detail message.
-
ALException
public ALException(String message, Throwable cause)
Constructs an ALException object with the specified detail message and root cause.
-
ALException
public ALException(Throwable cause)
Constructs an ALException object with the specified root cause.
-
-