aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/api/exceptions/ApiAuthorizationException.php
blob: 0e3f47769943b7447b0e3c5864ca1226868e99d5 (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
32
33
34
<?php

namespace Shaarli\Api\Exceptions;

/**
 * Class ApiAuthorizationException
 *
 * Request not authorized, return a 401 HTTP code.
 */
class ApiAuthorizationException extends ApiException
{
    /**
     * {@inheritdoc}
     */
    public function getApiResponse()
    {
        $this->setMessage('Not authorized');
        return $this->buildApiResponse(401);
    }

    /**
     * Set the exception message.
     *
     * We only return a generic error message in production mode to avoid giving
     * to much security information.
     *
     * @param $message string the exception message.
     */
    public function setMessage($message)
    {
        $original = $this->debug === true ? ': '. $this->getMessage() : '';
        $this->message = $message . $original;
    }
}