Interface PatcherErrorHandler
-
- All Known Implementing Classes:
PatcherErrorHandlerBase
,StrictPatcherErrorHandler
public interface PatcherErrorHandler
- Author:
- Eugene Petrenko Created: 28.04.2009 17:49:46
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addDirectoryFailed(File file)
void
changeBinaryFailed(File file, IOException e)
void
changeTextFailed(File file, IOException e)
void
chmodFailed(File file)
void
deleteFailed(File file)
void
failedToAccessFile(File file)
void
failedToCreateOrFindParentDirectory(File file)
void
renameFileFailed(File fromFile, File toFile)
void
renameFileFailedNoSourceFile(File file)
void
setLastModifiedFailed(File file, long timeStamp)
void
setReadonlyAttributeFailed(File file)
-
-
-
Method Detail
-
addDirectoryFailed
void addDirectoryFailed(@NotNull File file) throws PatchException
- Throws:
PatchException
-
deleteFailed
void deleteFailed(@NotNull File file) throws PatchException
- Throws:
PatchException
-
renameFileFailed
void renameFileFailed(@NotNull File fromFile, @NotNull File toFile) throws PatchException
- Throws:
PatchException
-
renameFileFailedNoSourceFile
void renameFileFailedNoSourceFile(@NotNull File file) throws PatchException
- Throws:
PatchException
-
chmodFailed
void chmodFailed(@NotNull File file) throws PatchException
- Throws:
PatchException
-
setLastModifiedFailed
void setLastModifiedFailed(@NotNull File file, long timeStamp) throws PatchException
- Throws:
PatchException
-
setReadonlyAttributeFailed
void setReadonlyAttributeFailed(@NotNull File file) throws PatchException
- Throws:
PatchException
-
changeBinaryFailed
void changeBinaryFailed(@NotNull File file, @NotNull IOException e) throws PatchException
- Throws:
PatchException
-
changeTextFailed
void changeTextFailed(@NotNull File file, @NotNull IOException e) throws PatchException
- Throws:
PatchException
-
failedToAccessFile
void failedToAccessFile(@NotNull File file) throws PatchException
- Throws:
PatchException
-
failedToCreateOrFindParentDirectory
void failedToCreateOrFindParentDirectory(@NotNull File file) throws PatchException
- Throws:
PatchException
-
-