1<?php
2
3namespace Sabre\DAV\Exception;
4
5use Sabre\DAV;
6
7/**
8 * NotAuthenticated
9 *
10 * This exception is thrown when the client did not provide valid
11 * authentication credentials.
12 *
13 * @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/).
14 * @author Evert Pot (http://evertpot.com/)
15 * @license http://sabre.io/license/ Modified BSD License
16 */
17class NotAuthenticated extends DAV\Exception {
18
19    /**
20     * Returns the HTTP statuscode for this exception
21     *
22     * @return int
23     */
24    function getHTTPCode() {
25
26        return 401;
27
28    }
29
30}
31