diff --git a/src/Exceptions/TaskNotFoundException.php b/src/Exceptions/TaskNotFoundException.php index 08bb07c..547dada 100644 --- a/src/Exceptions/TaskNotFoundException.php +++ b/src/Exceptions/TaskNotFoundException.php @@ -4,5 +4,8 @@ namespace Exceptions; class TaskNotFoundException extends \Exception { - + public function __construct(string $message = "Task not found.", int $code = 0, \Throwable $previous = null) + { + parent::__construct($message, $code, $previous); + } } \ No newline at end of file