Class SoundException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.jk.core.sound.SoundException
All Implemented Interfaces:
Serializable

public class SoundException extends Exception
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 Details

    • SoundException

      public SoundException()
      This method constructs a new SoundException 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

      public SoundException(String message)
      This method constructs a SoundException with a specific error message.
      Parameters:
      message - Specifies the error message explaining the reason for the exception.
    • SoundException

      public SoundException(String message, Throwable cause)
      This method constructs a SoundException 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

      public SoundException(Throwable cause)
      This method constructs a SoundException with a cause.
      Parameters:
      cause - Specifies the cause of this exception.