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