ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
exception.ilDatabaseException.php
Go to the documentation of this file.
1 <?php
2 
10 {
11  const DB_GENERAL = 10000;
12 
13 
20  public function __construct($a_message, $a_code = self::DB_GENERAL)
21  {
22  $a_message = $this->tranlateException($a_code) . $a_message;
23  parent::__construct($a_message, $a_code);
24  }
25 
26 
31  protected function tranlateException($code)
32  {
33  $message = 'An undefined Database Exception occured';
34  switch ($code) {
35  case static::DB_GENERAL:
36  $message = 'An undefined Database Exception occured';
37  break;
38  }
39 
40  return $message . '. ';
41  }
42 }
__construct($a_message, $a_code=self::DB_GENERAL)
ilDatabaseException constructor.
Class ilDatabaseException.
__construct(Container $dic, ilPlugin $plugin)
$message
Definition: xapiexit.php:14