public function __construct($module)
 {
     parent::__construct($module, "bong.system.module.ModuleDependencyNotSatisfiableException", 5008);
 }
 public function __construct($module, $file)
 {
     parent::__construct($module, "bong.system.module.ModuleIncludingNonExistingFile", 808);
     $this->registerParam(new BongExceptionParam("incfile", "File", true));
     $this->incfile = $file;
 }
 public function __construct($module, $file)
 {
     parent::__construct($module, "bong.system.module.ModuleIncludingNonReadableFile", 806);
     $this->registerParam(new BongExceptionParam("file", "File", true));
     $this->file = $file;
 }
示例#4
0
 public function __construct($module)
 {
     parent::__construct($module, "bong.system.module.ModuleNotFound", 4048);
 }