mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2026-03-03 12:39:42 +00:00
- Introduced `AuditDumpRequestHandler` to handle `AuditDumpRequestMessage` with transactional safety. - Added custom exceptions `AuditDumpTooMuchLines` and `AuditDumpAlreadyGeneratedException` for enhanced error reporting during processing. - Created unit tests in `AuditDumpRequestHandlerTest` to validate normal processing, exception handling, and edge cases. - Implemented locking mechanism and state management for `StoredObject` while processing requests.
15 lines
328 B
PHP
15 lines
328 B
PHP
<?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\MainBundle\Audit\Exception;
|
|
|
|
class AuditDumpAlreadyGeneratedException extends \RuntimeException {}
|