Completed
Push — master ( ccf0eb...14b48b )
by Anton
10s
created

ValidatorException::getErrors()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Bluz Framework Component
4
 *
5
 * @copyright Bluz PHP Team
6
 * @link      https://github.com/bluzphp/framework
7
 */
8
9
declare(strict_types=1);
10
11
namespace Bluz\Validator\Exception;
12
13
use Bluz\Application\Exception\BadRequestException;
14
15
/**
16
 * Validator Exception
17
 *
18
 * @package  Bluz\Validator\Exception
19
 * @author   Anton Shevchuk
20
 */
21
class ValidatorException extends BadRequestException
22
{
23
    /**
24
     * @var string exception message
25
     */
26
    protected $message = 'Invalid Arguments';
27
}
28