RuntimeException.php 275 B

123456789101112
  1. <?php
  2. namespace Symfony\Component\DependencyInjection\Exception;
  3. /**
  4. * Base RuntimeException for Dependency Injection Component.
  5. *
  6. * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  7. */
  8. class RuntimeException extends \RuntimeException implements ExceptionInterface
  9. {
  10. }