public function ParamConversionEnhancer::onException in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Routing/Enhancer/ParamConversionEnhancer.php \Drupal\Core\Routing\Enhancer\ParamConversionEnhancer::onException()
Catches failed parameter conversions and throw a 404 instead.
Parameters
\Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent $event:
File
- core/
lib/ Drupal/ Core/ Routing/ Enhancer/ ParamConversionEnhancer.php, line 82 - Contains \Drupal\Core\Routing\Enhancer\ParamConversionEnhancer.
Class
- ParamConversionEnhancer
- Provides a route enhancer that handles parameter conversion.
Namespace
Drupal\Core\Routing\EnhancerCode
public function onException(GetResponseForExceptionEvent $event) {
$exception = $event
->getException();
if ($exception instanceof ParamNotConvertedException) {
$event
->setException(new NotFoundHttpException($exception
->getMessage(), $exception));
}
}