for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TestMonitor\ActiveCampaign\Exceptions;
use Exception;
class TimeoutException extends Exception
{
/**
* The output returned from the operation.
*
* @var array
*/
public $output;
* Create a new exception instance.
* @param $output
public function __construct($output)
parent::__construct('Script timed out while waiting for the process to complete.');
$this->output = $output;
}
* @return array
public function output()
return $this->output;