1: <?php declare(strict_types=1);
2:
3: namespace Salient\Core;
4:
5: use Salient\Contract\Core\MultipleErrorExceptionInterface;
6: use Salient\Core\Concern\MultipleErrorExceptionTrait;
7:
8: /**
9: * Base class for runtime exceptions that represent multiple errors
10: *
11: * @api
12: */
13: abstract class AbstractMultipleErrorException extends AbstractException implements MultipleErrorExceptionInterface
14: {
15: use MultipleErrorExceptionTrait;
16: }
17: