This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/lib/vendor/lime/LimeExceptionExpectation.php
2010-01-04 15:26:20 +01:00

41 lines
769 B
PHP

<?php
/*
* This file is part of the Lime test framework.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
* (c) Bernhard Schussek <bernhard.schussek@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
class LimeExceptionExpectation
{
private
$exception = null,
$file = null,
$line = null;
public function __construct($exception, $file, $line)
{
$this->exception = $exception;
$this->file = $file;
$this->line = $line;
}
public function getException()
{
return $this->exception;
}
public function getFile()
{
return $this->file;
}
public function getLine()
{
return $this->line;
}
}