OXID eShop CE
4.10.2
Main Page
Related Pages
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Pages
oxlanguageexception.php
Go to the documentation of this file.
1
<?php
2
8
class
oxLanguageException
extends
oxException
9
{
10
16
private
$_sLangConstant
=
""
;
17
23
public
function
setLangConstant
($sLangConstant)
24
{
25
$this->_sLangConstant = $sLangConstant;
26
}
27
33
public
function
getLangConstant
()
34
{
35
return
$this->_sLangConstant
;
36
}
37
44
public
function
getString
()
45
{
46
return
__CLASS__ .
'-'
.
parent::getString
() .
" Faulty Constant --> "
. $this->_sLangConstant .
"\n"
;
47
}
48
57
public
function
getValues
()
58
{
59
$aRes =
parent::getValues
();
60
$aRes[
'langConstant'
] = $this->
getLangConstant
();
61
62
return
$aRes;
63
}
64
}
core
exception
oxlanguageexception.php
Generated by
1.8.1.2