InvalidClassException.php 358 B

123456789101112131415161718192021
  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. * Exception for invalid classes.
  10. *
  11. * @since 2.0.0
  12. *
  13. * @author Henrique Moody <henriquemoody@gmail.com>
  14. */
  15. final class InvalidClassException extends ComponentException
  16. {
  17. }