ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilMailError.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3
9{
11 protected $languageVariable = '';
12
14 protected $placeHolderValues = [];
15
21 public function __construct(string $languageVariable, array $placeHolderValues = [])
22 {
23 $this->languageVariable = $languageVariable;
24 $this->placeHolderValues = $placeHolderValues;
25 }
26
30 public function getLanguageVariable() : string
31 {
33 }
34
38 public function getPlaceHolderValues() : array
39 {
41 }
42}
An exception for terminatinating execution or to throw for unit testing.
Class ilMailError.
__construct(string $languageVariable, array $placeHolderValues=[])
ilMailError constructor.