Syncer for user absence, from the msgraph reader

This commit is contained in:
2023-07-06 17:29:10 +02:00
parent 5b42b85b50
commit 2861945a52
5 changed files with 136 additions and 3 deletions

View File

@@ -13,8 +13,8 @@ namespace Chill\CalendarBundle\Exception;
class UserAbsenceSyncException extends \LogicException
{
public function __construct(string $message = "", int $code = 20230706)
public function __construct(string $message = "", int $code = 20230706, ?\Throwable $previous = null)
{
parent::__construct($message, $code);
parent::__construct($message, $code, $previous);
}
}