ValidatorException.php 295 B

1234567891011121314151617
  1. <?php
  2. /*
  3. * Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
  4. * SPDX-License-Identifier: MIT
  5. */
  6. declare(strict_types=1);
  7. namespace Respect\Validation\Exceptions;
  8. /**
  9. * @author Henrique Moody <henriquemoody@gmail.com>
  10. */
  11. final class ValidatorException extends AllOfException
  12. {
  13. }