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

Yaml   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
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