mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
29 lines
411 B
PHP
29 lines
411 B
PHP
<?php
|
|
|
|
namespace Xentral\Core\ErrorHandler;
|
|
|
|
use RuntimeException;
|
|
|
|
class PhpErrorException extends RuntimeException
|
|
{
|
|
/**
|
|
* @param string $file
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setFile($file)
|
|
{
|
|
$this->file = $file;
|
|
}
|
|
|
|
/**
|
|
* @param int $line
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setLine($line)
|
|
{
|
|
$this->line = $line;
|
|
}
|
|
}
|