ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSystemStyleMessageStackException.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
27 
28 
29  protected function assignMessageToCode(): void
30  {
31  switch ($this->code) {
32  case self::MESSAGE_STACK_TYPE_ID_DOES_NOT_EXIST:
33  $this->message = 'Type id does not exist in message stack';
34  break;
35  default:
36  $this->message = 'Unknown Exception ' . $this->add_info;
37  break;
38  }
39  }
40 }
Class for advanced editing exception handling in ILIAS.
Class for advanced editing exception handling in ILIAS.