1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
<?php
namespace ICanBoogie\Module;
use ICanBoogie\Accessor\AccessorTrait;
use ICanBoogie\HTTP\Status;
class ModuleIsDisabled extends \RuntimeException
{
use AccessorTrait;
private $module_id;
protected function get_module_id()
{
return $this->module_id;
}
public function __construct($module_id, $code = Status::INTERNAL_SERVER_ERROR, \Exception $previous = null)
{
$this->module_id = $module_id;
parent::__construct(\ICanBoogie\format('Module is disabled: %module_id', [
'module_id' => $module_id
]), $code, $previous);
}
}