Failed Conditions
Push — exceptions ( 64d080...7fc4df )
by Michael
15:07
created

ConversionException::conversionFailedSerialization()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
dl 0
loc 9
ccs 0
cts 7
cp 0
rs 9.6666
c 0
b 0
f 0
cc 2
eloc 6
nc 2
nop 3
crap 6
1
<?php
2
3
namespace Doctrine\DBAL\Types;
4
5
/**
6
 * Conversion Exception is thrown when the database to PHP conversion fails.
7
 *
8
 * @link   www.doctrine-project.org
9
 * @since  2.0
10
 * @author Benjamin Eberlei <[email protected]>
11
 * @author Guilherme Blanco <[email protected]>
12
 * @author Jonathan Wage <[email protected]>
13
 * @author Roman Borschel <[email protected]>
14
 */
15
class ConversionException extends \Doctrine\DBAL\DBALException
16
{
17
}
18