|
1
|
<?php |
|
2
|
|
|
3
|
namespace WPStaging\Backup\Exceptions; |
|
4
|
|
|
5
|
use WPStaging\Framework\Exceptions\WPStagingException; |
|
6
|
|
|
7
|
class ThresholdException extends WPStagingException |
|
8
|
{ |
|
9
|
public static function thresholdHit($message = '') |
|
10
|
{ |
|
11
|
return new self($message, 100); |
|
12
|
} |
|
13
|
} |
|
14
|
|