Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
20.00% covered (danger)
20.00%
2 / 10
50.00% covered (danger)
50.00%
1 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
SecurityException
20.00% covered (danger)
20.00%
2 / 10
50.00% covered (danger)
50.00%
1 / 2
4.05
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 __toString
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2018 (update and modification) Open Assessment Technologies SA
19 */
20
21namespace oat\tao\model\security;
22
23use Exception;
24
25class SecurityException extends Exception
26{
27    private $messageToLog;
28
29    public function __construct($message = null, $code = 0, Exception $previous = null)
30    {
31        $this->messageToLog = $message;
32
33        parent::__construct('', $code, $previous);
34    }
35
36    public function __toString()
37    {
38        return sprintf(
39            "%s %s in %s(%s)\n\t\t\t%s",
40            get_class($this),
41            $this->messageToLog,
42            $this->file,
43            $this->line,
44            $this->getTraceAsString()
45        );
46    }
47}