ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
ConstraintViolationException.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Refinery
;
22
23
use
UnexpectedValueException
;
24
25
/***
26
* Signals the violation of some constraint on a value in a way that can be subject
27
* to i18n.
28
*/
29
class
ConstraintViolationException
extends
UnexpectedValueException
30
{
31
private
string
$languageId
;
32
private
array
$languageValues
;
33
41
public
function
__construct
(
42
string
$message
,
43
string
$languageId,
44
...$languageValues
45
) {
46
parent::__construct
($message);
47
48
$this->
languageId
=
$languageId
;
49
$this->languageValues =
$languageValues
;
50
}
51
52
public
function
getTranslatedMessage
(callable
$txt
): string
53
{
54
return
vsprintf(
$txt
($this->
languageId
), $this->languageValues);
55
}
56
}
ILIAS\Refinery
Definition:
ByTrying.php:21
ILIAS\Refinery\ConstraintViolationException\$languageId
string $languageId
Definition:
ConstraintViolationException.php:31
languageId
Definition:
ThreadSortation.php:32
UnexpectedValueException
ILIAS\Refinery\ConstraintViolationException
Definition:
ConstraintViolationException.php:29
$txt
$txt
Definition:
error.php:31
ILIAS\Refinery\ConstraintViolationException\__construct
__construct(string $message, string $languageId,... $languageValues)
Construct a violation on a constraint.
Definition:
ConstraintViolationException.php:41
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
ILIAS\Refinery\ConstraintViolationException\getTranslatedMessage
getTranslatedMessage(callable $txt)
Definition:
ConstraintViolationException.php:52
$message
$message
Definition:
xapiexit.php:31
ILIAS\Refinery\ConstraintViolationException\$languageValues
array $languageValues
Definition:
ConstraintViolationException.php:32
components
ILIAS
Refinery
src
ConstraintViolationException.php
Generated on Wed Apr 2 2025 23:03:24 for ILIAS by
1.8.13 (using
Doxyfile
)