Package com.jk.core.sound
Class SoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.jk.core.sound.SoundException
- All Implemented Interfaces:
Serializable
This class represents exception thrown when a sound failure happens inside
the framework.
This exception is a subclass of Exception
.
- Version:
- 1.0
- Author:
- Dr. Jalal H. Kiswani
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionThis method constructs a newSoundException
without any specified errors or causes.SoundException
(String message) This method constructs aSoundException
with a specific error message.SoundException
(String message, Throwable cause) This method constructs aSoundException
with a specific error message and a cause.SoundException
(Throwable cause) This method constructs aSoundException
with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SoundException
public SoundException()This method constructs a newSoundException
without any specified errors or causes.This constructor is typically used when the exception is thrown to represent a specific error condition without additional details.
-
SoundException
This method constructs aSoundException
with a specific error message.- Parameters:
message
- Specifies the error message explaining the reason for the exception.
-
SoundException
This method constructs aSoundException
with a specific error message and a cause.- Parameters:
message
- Specifies the error message explaining the reason for the exception.cause
- Specifies the cause of this exception.
-
SoundException
This method constructs aSoundException
with a cause.- Parameters:
cause
- Specifies the cause of this exception.
-