woocommerce
/
src
/
Internal
/
ProductDownloads
/
ApprovedDirectories
/
ApprovedDirectoriesException.php
Admin
4 years ago
ApprovedDirectoriesException.php
4 years ago
Register.php
4 years ago
StoredUrl.php
4 years ago
Synchronize.php
1 year ago
ApprovedDirectoriesException.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories; |
| 4 | |
| 5 | use Exception; |
| 6 | |
| 7 | /** |
| 8 | * Encapsulates a problem encountered while an operation relating to approved directories |
| 9 | * was performed. |
| 10 | */ |
| 11 | class ApprovedDirectoriesException extends Exception { |
| 12 | public const INVALID_URL = 1; |
| 13 | public const DB_ERROR = 2; |
| 14 | } |
| 15 |