fix: add missing body to task not found exception
This commit is contained in:
parent
c0871bf214
commit
be38a9c5e6
@ -4,5 +4,8 @@ namespace Exceptions;
|
|||||||
|
|
||||||
class TaskNotFoundException extends \Exception
|
class TaskNotFoundException extends \Exception
|
||||||
{
|
{
|
||||||
|
public function __construct(string $message = "Task not found.", int $code = 0, \Throwable $previous = null)
|
||||||
|
{
|
||||||
|
parent::__construct($message, $code, $previous);
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user