1: <?php declare(strict_types=1);
2:
3: namespace Salient\Core\Exception;
4:
5: use Salient\Contract\Core\Exception\MultipleErrorException as MultipleErrorExceptionInterface;
6:
7: /**
8: * @api
9: */
10: class MultipleErrorException extends Exception implements MultipleErrorExceptionInterface
11: {
12: use MultipleErrorExceptionTrait;
13: }
14: