LogicException.php 427 B

123456789101112131415161718192021
  1. <?php
  2. /*
  3. * This file is part of the Symfony framework.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this source code in the file LICENSE.
  9. */
  10. namespace Symfony\Component\Serializer\Exception;
  11. /**
  12. * LogicException
  13. *
  14. * @author Lukas Kahwe Smith <smith@pooteeweet.org>
  15. */
  16. class LogicException extends \LogicException implements Exception
  17. {
  18. }