Class WaveformServiceException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opencastproject.waveform.api.WaveformServiceException
All Implemented Interfaces:
Serializable

public class WaveformServiceException extends Exception
This exception is thrown if errors occur during waveform extraction.
See Also:
  • Constructor Details

    • WaveformServiceException

      public WaveformServiceException(String message)
      Creates a new waveform service exception with message as reason.
      Parameters:
      message - the reason of failure
    • WaveformServiceException

      public WaveformServiceException(Throwable cause)
      Creates a new waveform service exception where cause identifies the root cause of failure.
      Parameters:
      cause - the root cause of the failure
    • WaveformServiceException

      public WaveformServiceException(String message, Throwable cause)
      Creates a new waveform service exception with message as reason and cause as the root cause of failure.
      Parameters:
      message - the reason of failure
      cause - the root cause of the failure