class ExceptionDataCollector

ExceptionDataCollector.

@author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of ExceptionDataCollector

1 file declares its use of ExceptionDataCollector
ExceptionDataCollectorTest.php in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/DataCollector/ExceptionDataCollectorTest.php

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/DataCollector/ExceptionDataCollector.php, line 24

Namespace

Symfony\Component\HttpKernel\DataCollector
View source
class ExceptionDataCollector extends DataCollector {

  /**
   * {@inheritdoc}
   */
  public function collect(Request $request, Response $response, \Exception $exception = null) {
    if (null !== $exception) {
      $this->data = array(
        'exception' => FlattenException::create($exception),
      );
    }
  }

  /**
   * Checks if the exception is not null.
   *
   * @return Boolean true if the exception is not null, false otherwise
   */
  public function hasException() {
    return isset($this->data['exception']);
  }

  /**
   * Gets the exception.
   *
   * @return \Exception The exception
   */
  public function getException() {
    return $this->data['exception'];
  }

  /**
   * Gets the exception message.
   *
   * @return string The exception message
   */
  public function getMessage() {
    return $this->data['exception']
      ->getMessage();
  }

  /**
   * Gets the exception code.
   *
   * @return integer The exception code
   */
  public function getCode() {
    return $this->data['exception']
      ->getCode();
  }

  /**
   * Gets the status code.
   *
   * @return integer The status code
   */
  public function getStatusCode() {
    return $this->data['exception']
      ->getStatusCode();
  }

  /**
   * Gets the exception trace.
   *
   * @return array The exception trace
   */
  public function getTrace() {
    return $this->data['exception']
      ->getTrace();
  }

  /**
   * {@inheritdoc}
   */
  public function getName() {
    return 'exception';
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DataCollector::$data protected property
DataCollector::serialize public function
DataCollector::unserialize public function
ExceptionDataCollector::collect public function Collects data for the given Request and Response. Overrides DataCollectorInterface::collect
ExceptionDataCollector::getCode public function Gets the exception code.
ExceptionDataCollector::getException public function Gets the exception.
ExceptionDataCollector::getMessage public function Gets the exception message.
ExceptionDataCollector::getName public function Returns the name of the collector. Overrides DataCollectorInterface::getName
ExceptionDataCollector::getStatusCode public function Gets the status code.
ExceptionDataCollector::getTrace public function Gets the exception trace.
ExceptionDataCollector::hasException public function Checks if the exception is not null.