Package org.opencastproject.waveform.api
Class WaveformServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opencastproject.waveform.api.WaveformServiceException
- All Implemented Interfaces:
Serializable
This exception is thrown if errors occur during waveform extraction.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionWaveformServiceException(String message) Creates a new waveform service exception withmessageas reason.WaveformServiceException(String message, Throwable cause) Creates a new waveform service exception withmessageas reason andcauseas the root cause of failure.Creates a new waveform service exception wherecauseidentifies the root cause of failure. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
WaveformServiceException
Creates a new waveform service exception withmessageas reason.- Parameters:
message- the reason of failure
-
WaveformServiceException
Creates a new waveform service exception wherecauseidentifies the root cause of failure.- Parameters:
cause- the root cause of the failure
-
WaveformServiceException
Creates a new waveform service exception withmessageas reason andcauseas the root cause of failure.- Parameters:
message- the reason of failurecause- the root cause of the failure
-