. * * @package LibreNMS * @link http://librenms.org * @copyright 2021 Tony Murray * @author Tony Murray */ namespace LibreNMS\Exceptions; use Exception; class RrdGraphException extends Exception { protected $image_output; public function __construct($error, $exit_code, $image_output) { parent::__construct($error, $exit_code); $this->image_output = $image_output; } public function getImage() { return $this->image_output; } }