OXID eShop CE
4.9.6
Main Page
Related Pages
Classes
Files
File List
File Members
All
Classes
Files
Functions
Variables
Pages
oxlanguageexception.php
Go to the documentation of this file.
1
<?php
2
6
class
oxLanguageException
extends
oxException
7
{
8
14
private
$_sLangConstant
=
""
;
15
21
public
function
setLangConstant
($sLangConstant)
22
{
23
$this->_sLangConstant = $sLangConstant;
24
}
25
31
public
function
getLangConstant
()
32
{
33
return
$this->_sLangConstant
;
34
}
35
42
public
function
getString
()
43
{
44
return
__CLASS__ .
'-'
.
parent::getString
() .
" Faulty Constant --> "
. $this->_sLangConstant .
"\n"
;
45
}
46
55
public
function
getValues
()
56
{
57
$aRes =
parent::getValues
();
58
$aRes[
'langConstant'
] = $this->
getLangConstant
();
59
60
return
$aRes;
61
}
62
}
core
exception
oxlanguageexception.php
Generated by
1.8.1.2