Completed
Push — master ( 6fb51e...94364b )
by Thierry
01:40
created

Yaml::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * Yaml.php - Yaml-specific exception.
5
 *
6
 * This exception is thrown when an error related to Yaml occurs.
7
 * A typical example is when the php-yaml package is not installed.
8
 *
9
 * @package jaxon-core
10
 * @author Thierry Feuzeu <[email protected]>
11
 * @copyright 2016 Thierry Feuzeu <[email protected]>
12
 * @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
13
 * @link https://github.com/jaxon-php/jaxon-core
14
 */
15
16
namespace Jaxon\Config\Exception;
17
18
class Yaml extends \Exception
19
{
20
    public function __construct($sMessage)
21
    {
22
        parent::__construct($sMessage);
23
    }
24
}
25