Passed
Push — master ( 463105...84cd59 )
by Roberto
04:47
created

ValidatorException   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 3
c 0
b 0
f 0
lcom 0
cbo 0
dl 0
loc 16
ccs 0
cts 12
cp 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A xmlErrors() 0 8 2
A isNotXml() 0 4 1
1
<?php
2
3
namespace NFePHP\Common\Exception;
4
5
/**
6
 * @category   NFePHP
7
 * @package    NFePHP\Common\Exception
8
 * @copyright  Copyright (c) 2008-2016
9
 * @license    http://www.gnu.org/licenses/lesser.html LGPL v3
10
 * @author     Roberto L. Machado <linux.rlm at gmail dot com>
11
 * @link       http://github.com/nfephp-org/sped-common for the canonical source repository
12
 */
13
14
class ValidatorException extends \RuntimeException implements ExceptionInterface
15
{
16
    public static function xmlErrors(array $errors)
17
    {
18
        $msg = '';
19
        foreach ($errors as $error) {
20
            $msg .= $error->message."\n";
21
        }
22
        return new static('This XML is not valid. '.$msg);
23
    }
24
    
25
    public static function isNotXml()
26
    {
27
        return new static('This string is not a valid XML');
28
    }
29
}
30