fix: add missing body to task not found exception

This commit is contained in:
Miguel Nogueira 2025-04-13 23:26:48 +01:00
parent c0871bf214
commit be38a9c5e6

View File

@ -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);
}
}