function ProfilerSubscriber::onKernelException

Handles the onKernelException event.

File

webprofiler/src/EventSubscriber/ProfilerSubscriber.php, line 54

Class

ProfilerSubscriber

Namespace

Drupal\webprofiler\EventSubscriber

Code

public function onKernelException(GetResponseForExceptionEvent $event) {
    if ($this->onlyMasterRequests && !$event->isMasterRequest()) {
        return;
    }
    $this->exception = $event->getException();
}