* @package MCMS\System\Error */ class IllegalStateException extends \RuntimeException { private $context; public function __construct($context, $message) { parent::__construct($message); $this->context = $context; } public function getContext() { return $this->context; } }