]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - application/api/exceptions/ApiAuthorizationException.php
0e3f47769943b7447b0e3c5864ca1226868e99d5
[github/shaarli/Shaarli.git] / application / api / exceptions / ApiAuthorizationException.php
1 <?php
2
3 namespace Shaarli\Api\Exceptions;
4
5 /**
6 * Class ApiAuthorizationException
7 *
8 * Request not authorized, return a 401 HTTP code.
9 */
10 class ApiAuthorizationException extends ApiException
11 {
12 /**
13 * {@inheritdoc}
14 */
15 public function getApiResponse()
16 {
17 $this->setMessage('Not authorized');
18 return $this->buildApiResponse(401);
19 }
20
21 /**
22 * Set the exception message.
23 *
24 * We only return a generic error message in production mode to avoid giving
25 * to much security information.
26 *
27 * @param $message string the exception message.
28 */
29 public function setMessage($message)
30 {
31 $original = $this->debug === true ? ': '. $this->getMessage() : '';
32 $this->message = $message . $original;
33 }
34 }