MraException::__toString()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 2
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Puerari\Moodle;
4
5
use Exception;
6
/*use Throwable;*/
7
8
/**
9
 * @class MraException
10
 * @package Puerari\Moodle
11
 * @author Leandro Puerari <[email protected]>
12
 */
13
class MraException extends Exception
14
{
15
    public function __construct($message, $code = 0/*, Throwable $previous = null*/)
16
    {
17
        parent::__construct('MoodleRestApi: ' . $message, $code/*, $previous*/);
18
    }
19
20
    public function __toString() {
21
        return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
22
    }
23
}
24