Package org.openstreetmap.josm.io.audio
Class AudioException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.openstreetmap.josm.io.audio.AudioException
-
- All Implemented Interfaces:
java.io.Serializable
public class AudioException extends java.lang.Exception
Generic audio exception. Mainly used to wrap backend exceptions varying between implementations.- Since:
- 12328
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AudioException(java.lang.String message)
Constructs a newAudioException
.AudioException(java.lang.String message, java.lang.Throwable cause)
Constructs a newAudioException
.AudioException(java.lang.Throwable cause)
Constructs a newAudioException
.
-
-
-
Constructor Detail
-
AudioException
public AudioException(java.lang.String message, java.lang.Throwable cause)
Constructs a newAudioException
.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method).
-
AudioException
public AudioException(java.lang.String message)
Constructs a newAudioException
.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).
-
AudioException
public AudioException(java.lang.Throwable cause)
Constructs a newAudioException
.- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method).
-
-