Class VideoSegmenterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opencastproject.videosegmenter.api.VideoSegmenterException
- All Implemented Interfaces:
Serializable
This exception is thrown during media segmentation.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionVideoSegmenterException(String message) Creates a new media analysis exception withmessageas a reason.VideoSegmenterException(String message, Throwable cause) Creates a new media analysis exception withmessageas a reason andcauseas the original cause of failure.VideoSegmenterException(Throwable cause) Creates a new media analysis exception wherecauseidentifies the original reason 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
-
VideoSegmenterException
Creates a new media analysis exception withmessageas a reason.- Parameters:
message- the reason of failure
-
VideoSegmenterException
Creates a new media analysis exception wherecauseidentifies the original reason of failure.- Parameters:
cause- the root cause for the failure
-
VideoSegmenterException
Creates a new media analysis exception withmessageas a reason andcauseas the original cause of failure.- Parameters:
message- the reason of failurecause- the root cause for the failure
-