aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/JsonApi/Errors/ConflictException.php
blob: c5cf0d735607f409f4e59777e3655da7d7789f94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

namespace JsonApi\Errors;

use Neomerx\JsonApi\Schema\Error;
use Neomerx\JsonApi\Exceptions\JsonApiException;

/**
 * TODO.
 */
class ConflictException extends JsonApiException
{
    /**
     * TODO.
     */
    public function __construct($error = null)
    {
        $errorObject = new Error(null, null, null, 409, null, 'Conflict', $error);
        parent::__construct($errorObject, 409);
    }
}