19 declare(strict_types=1);
43 $message =
'An undefined Exception occured';
45 case static::DB_ATOM_GENERAL:
46 $message =
'An undefined exception in ilAtomQuery has occured';
48 case static::DB_ATOM_LOCK_TABLE_NONEXISTING:
49 $message =
'Table locks only work with existing tables';
51 case static::DB_ATOM_LOCK_WRONG_LEVEL:
52 $message =
'The current Isolation-level does not support the desired lock-level. use ilAtomQuery::LOCK_READ or ilAtomQuery::LOCK_WRITE';
54 case static::DB_ATOM_CLOSURE_WRONG_FORMAT:
55 $message =
'Please provide a Closure with your database-actions by adding with ilAtomQuery->addQueryClosure(function($ilDB) use ($my_vars) { $ilDB->doStuff(); });';
57 case static::DB_ATOM_ISO_WRONG_LEVEL:
58 $message =
'This isolation-level is currently unsupported';
60 case static::DB_ATOM_ANO_NOT_AVAILABLE:
63 case static::DB_ATOM_LOCK_NO_TABLE:
64 $message =
'ilAtomQuery needs at least one table to be locked';
66 case static::DB_ATOM_CLOSURE_NONE:
67 $message =
'There is no Closure available';
69 case static::DB_ATOM_CLOSURE_ALREADY_SET:
70 $message =
'Only one Closure per ilAtomQuery is possible';
72 case static::DB_ATOM_IDENTICAL_TABLES:
73 $message =
'A Table and/or alias-name can only be locked once';
77 return 'ilAtomQuery: ' .
$message .
'. ';
const DB_ATOM_CLOSURE_NONE
const DB_ATOM_LOCK_TABLE_NONEXISTING
tranlateException(int $code)
const DB_ATOM_LOCK_WRONG_LEVEL
const DB_ATOM_CLOSURE_WRONG_FORMAT
Class ilAtomQueryException.
const DB_ATOM_CLOSURE_ALREADY_SET
const DB_ATOM_ISO_WRONG_LEVEL
const DB_ATOM_LOCK_NO_TABLE
const DB_ATOM_ANO_NOT_AVAILABLE
const DB_ATOM_IDENTICAL_TABLES