Read absence from MS graph api

This commit is contained in:
2023-07-06 16:58:24 +02:00
parent c19232de35
commit 5b42b85b50
3 changed files with 264 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
declare(strict_types=1);
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\CalendarBundle\Exception;
class UserAbsenceSyncException extends \LogicException
{
public function __construct(string $message = "", int $code = 20230706)
{
parent::__construct($message, $code);
}
}