You are here

class TestKernelThatThrowsException in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Tests/EventListener/ExceptionListenerTest.php \Symfony\Component\HttpKernel\Tests\EventListener\TestKernelThatThrowsException

Hierarchy

Expanded class hierarchy of TestKernelThatThrowsException

File

vendor/symfony/http-kernel/Tests/EventListener/ExceptionListenerTest.php, line 140

Namespace

Symfony\Component\HttpKernel\Tests\EventListener
View source
class TestKernelThatThrowsException implements HttpKernelInterface {
  public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true) {
    throw new \RuntimeException('bar');
  }

}

Members