Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
InsertConflict
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 2
6
0.00% covered (danger)
0.00%
0 / 1
 getStatusCode
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2namespace Apie\DoctrineEntityDatalayer\Exceptions;
3
4use Apie\Core\Exceptions\ApieException;
5use Apie\Core\Exceptions\HttpStatusCodeException;
6use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
7use Doctrine\ORM\Exception\EntityIdentityCollisionException;
8
9class InsertConflict extends ApieException implements HttpStatusCodeException
10{
11    public function getStatusCode(): int
12    {
13        return 409;
14    }
15
16    public function __construct(UniqueConstraintViolationException|EntityIdentityCollisionException $previous)
17    {
18        parent::__construct('Insertion conflict, unique constraint already exists', 0, $previous);
19    }
20}