NonOmissibleException.php 331 B

123456789101112131415161718
  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 Andy Wendt <andy@awendt.com>
  10. * @author Henrique Moody <henriquemoody@gmail.com>
  11. */
  12. interface NonOmissibleException extends Exception
  13. {
  14. }