aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/api/exceptions/ApiLinkNotFoundException.php
blob: c727f4f0c9eec47e2fad40849b1fb418ef4b9adf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php

namespace Shaarli\Api\Exceptions;

use Slim\Http\Response;

/**
 * Class ApiLinkNotFoundException
 *
 * Link selected by ID couldn't be found, results in a 404 error.
 *
 * @package Shaarli\Api\Exceptions
 */
class ApiLinkNotFoundException extends ApiException
{
    /**
     * ApiLinkNotFoundException constructor.
     */
    public function __construct()
    {
        $this->message = 'Link not found';
    }

    /**
     * {@inheritdoc}
     */
    public function getApiResponse()
    {
        return $this->buildApiResponse(404);
    }
}