mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
22 lines
405 B
PHP
22 lines
405 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace LibreNMS\Exceptions;
|
||
|
|
||
|
use Throwable;
|
||
|
|
||
|
class JsonAppBlankJsonException extends JsonAppException
|
||
|
{
|
||
|
private $output;
|
||
|
|
||
|
public function __construct($message, $output, $code = 0, Throwable $previous = null)
|
||
|
{
|
||
|
parent::__construct($message, $code, $previous);
|
||
|
$this->output = $output;
|
||
|
}
|
||
|
|
||
|
public function getOutput()
|
||
|
{
|
||
|
return $this->output;
|
||
|
}
|
||
|
}
|