. * * @link https://www.librenms.org * @copyright 2019 Tony Murray * @author Tony Murray */ namespace LibreNMS\Exceptions; class ApiException extends \Exception { private $output; public function __construct($message = '', $output = []) { parent::__construct($message, 0, null); $this->output = $output; } public function getOutput() { return $this->output; } }