| 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 invalid tasks. |
| 10 |
*/ |
| 11 |
class Invalid_Tasks_Exception extends Exception { |
| 12 |
|
| 13 |
/** |
| 14 |
* Constructor of the exception. |
| 15 |
*/ |
| 16 |
public function __construct() { |
| 17 |
parent::__construct( 'Added invalid task.', 400 ); |
| 18 |
} |
| 19 |
} |
| 20 |
|