streams/vendor/sabre/dav/lib/Sabre/DAV/Exception/NotAuthenticated.php

31 lines
592 B
PHP
Raw Normal View History

<?php
namespace Sabre\DAV\Exception;
use Sabre\DAV;
/**
* NotAuthenticated
*
* This exception is thrown when the client did not provide valid
* authentication credentials.
*
2014-04-12 17:13:37 +00:00
* @copyright Copyright (C) 2007-2014 fruux GmbH (https://fruux.com/).
* @author Evert Pot (http://evertpot.com/)
* @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
*/
class NotAuthenticated extends DAV\Exception {
/**
* Returns the HTTP statuscode for this exception
*
* @return int
*/
public function getHTTPCode() {
return 401;
}
}