BackupRuntimeException.php
3 years ago
BackupSkipItemException.php
1 year ago
DiskNotWritableException.php
3 years ago
EmptyChunkException.php
2 years ago
FileValidationException.php
2 years ago
NotFinishedException.php
1 year ago
ProcessLockedException.php
3 years ago
StorageException.php
3 years ago
TaskHealthException.php
3 years ago
ThresholdException.php
3 years ago
FileValidationException.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * An exception thrown in the context of the Backup execution if validation for a certain file fails |
| 5 | * |
| 6 | * @package WPStaging\Backup\Exceptions |
| 7 | */ |
| 8 | |
| 9 | namespace WPStaging\Backup\Exceptions; |
| 10 | |
| 11 | use WPStaging\Framework\Exceptions\WPStagingException; |
| 12 | |
| 13 | /** |
| 14 | * @package WPStaging\Backup\Exceptions |
| 15 | */ |
| 16 | class FileValidationException extends WPStagingException |
| 17 | { |
| 18 | } |
| 19 |