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
ProcessLockedException.php
14 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Backup\Exceptions; |
| 4 | |
| 5 | use WPStaging\Framework\Exceptions\WPStagingException; |
| 6 | |
| 7 | class ProcessLockedException extends WPStagingException |
| 8 | { |
| 9 | public static function processAlreadyLocked($timeLeft) |
| 10 | { |
| 11 | return new self(sprintf(__('Another backup/restore is already running. Please wait %d seconds and try again. If you continue to see this error, please contact the WP STAGING support.', 'wp-staging'), absint($timeLeft)), 423); |
| 12 | } |
| 13 | } |
| 14 |