misc_pterodactyl-panel/app/Exceptions/DisplayException.php
2017-09-26 22:54:34 -05:00

48 lines
957 B
PHP

<?php
/**
* Pterodactyl - Panel
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
*
* This software is licensed under the terms of the MIT license.
* https://opensource.org/licenses/MIT
*/
namespace Pterodactyl\Exceptions;
use Log;
use Throwable;
class DisplayException extends PterodactylException
{
/**
* @var string
*/
protected $level;
/**
* Exception constructor.
*
* @param string $message
* @param Throwable|null $previous
* @param string $level
* @internal param mixed $log
*/
public function __construct($message, Throwable $previous = null, $level = 'error')
{
$this->level = $level;
if (! is_null($previous)) {
Log::{$level}($previous);
}
parent::__construct($message);
}
/**
* @return string
*/
public function getErrorLevel()
{
return $this->level;
}
}