Bristol SU Support Package
ModuleInstanceDisabled.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
7 class ModuleInstanceDisabled extends \Exception
8 {
13  protected $moduleInstance;
14 
22  $exception = new self;
23  $exception->setModuleInstance($moduleInstance);
24  return $exception;
25  }
26 
33  {
35  }
36 
42  public function moduleInstance()
43  {
44  return $this->moduleInstance;
45  }
46 }