Package org.opencastproject.crop.api
Class CropException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opencastproject.crop.api.CropException
- All Implemented Interfaces:
Serializable
This exception is thrown during cropping.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCropException(String message) Creates a new crop exceptionmessageas a reasonCropException(String message, Throwable cause) Create a new crop exceptionmessageas a reason andcauseas the original 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
-
CropException
Creates a new crop exceptionmessageas a reason- Parameters:
message- the reason of failure
-
CropException
Create a new crop exceptionmessageas a reason andcauseas the original cause of failure.- Parameters:
message- the reason of failurecause- the root cause for the failure
-