| 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 the task is not found. |
| 10 |
*/ |
| 11 |
class Task_Not_Found_Exception extends Exception { |
| 12 |
|
| 13 |
/** |
| 14 |
* Constructor of the exception. |
| 15 |
*/ |
| 16 |
public function __construct() { |
| 17 |
parent::__construct( 'Task not found', 404 ); |
| 18 |
} |
| 19 |
} |
| 20 |
|