| 1 |
<?php |
| 2 |
|
| 3 |
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. |
| 4 |
namespace Yoast\WP\SEO\Task_List\Domain\Exceptions; |
| 5 |
|
| 6 |
use Exception; |
| 7 |
|
| 8 |
/** |
| 9 |
* Exception for when we can't complete the sample page task. |
| 10 |
*/ |
| 11 |
class Complete_Sample_Page_Task_Exception extends Exception { |
| 12 |
|
| 13 |
/** |
| 14 |
* Constructor of the exception. |
| 15 |
*/ |
| 16 |
public function __construct() { |
| 17 |
parent::__construct( \esc_html__( 'Failed to delete the Sample Page.', 'wordpress-seo' ), 400 ); |
| 18 |
} |
| 19 |
} |
| 20 |
|