ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilTestException.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 {
31  public function __construct($msg = '', $code = 0)
32  {
33  if (!strlen($msg)) {
34  $msg = get_class($this);
35  }
36 
37  parent::__construct($msg, $code);
38  }
39 }
Base Exception for all Exceptions relating to Modules/Test.
__construct($msg='', $code=0)
__construct(Container $dic, ilPlugin $plugin)