class PHPUnit_Framework_Error

Wrapper for PHP errors.

@package PHPUnit @subpackage Framework @author Sebastian Bergmann <sebastian@phpunit.de> @copyright 2001-2013 Sebastian Bergmann <sebastian@phpunit.de> @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License @link http://www.phpunit.de/ @since Class available since Release 2.2.0

Hierarchy

Expanded class hierarchy of PHPUnit_Framework_Error

1 string reference to 'PHPUnit_Framework_Error'
PHPUnit_Util_ErrorHandler::handleError in drupal/core/vendor/phpunit/phpunit/PHPUnit/Util/ErrorHandler.php

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/Error.php, line 57

View source
class PHPUnit_Framework_Error extends Exception {

  /**
   * Constructor.
   *
   * @param  string     $message
   * @param  integer    $code
   * @param  string     $file
   * @param  integer    $line
   * @param  Exception  $previous
   */
  public function __construct($message, $code, $file, $line, Exception $previous = NULL) {
    parent::__construct($message, $code, $previous);
    $this->file = $file;
    $this->line = $line;
  }

}

Members