Interface IFileProvisionHandleErrorProcessor<E extends Throwable>
-
- Type Parameters:
E
- Type of the error that may be thrown when in case of an error.
public interface IFileProvisionHandleErrorProcessor<E extends Throwable>
Handler for errors that may occur when aIFileProvision
is handled, seeIWorkflowFileHandler#handleFileProvision
.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onAttachmentCouldNotBeSaved(AFileProvisionHandleError.AttachmentCouldNotBeSaved error)
Callback for handling an error of typeATTACHMENT_COULD_NOT_BE_SAVED
.void
onFileCouldNotBeRead(AFileProvisionHandleError.FileCouldNotBeRead error)
Callback for handling an error of typeFILE_COULD_NOT_BE_READ
.
-
-
-
Method Detail
-
onAttachmentCouldNotBeSaved
void onAttachmentCouldNotBeSaved(AFileProvisionHandleError.AttachmentCouldNotBeSaved error) throws E extends Throwable
Callback for handling an error of typeATTACHMENT_COULD_NOT_BE_SAVED
.
-
onFileCouldNotBeRead
void onFileCouldNotBeRead(AFileProvisionHandleError.FileCouldNotBeRead error) throws E extends Throwable
Callback for handling an error of typeFILE_COULD_NOT_BE_READ
.
-
-