Class 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 new AudioException.
      AudioException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new AudioException.
      AudioException​(java.lang.Throwable cause)
      Constructs a new AudioException.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • AudioException

        public AudioException​(java.lang.String message,
                              java.lang.Throwable cause)
        Constructs a new AudioException.
        Parameters:
        message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
        cause - the cause (which is saved for later retrieval by the Throwable.getCause() method).
      • AudioException

        public AudioException​(java.lang.String message)
        Constructs a new AudioException.
        Parameters:
        message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      • AudioException

        public AudioException​(java.lang.Throwable cause)
        Constructs a new AudioException.
        Parameters:
        cause - the cause (which is saved for later retrieval by the Throwable.getCause() method).