xref: /plugin/davcal/vendor/sabre/dav/lib/DAV/Exception/RequestedRangeNotSatisfiable.php (revision a1a3b6794e0e143a4a8b51d3185ce2d339be61ab)
1*a1a3b679SAndreas Boehler<?php
2*a1a3b679SAndreas Boehler
3*a1a3b679SAndreas Boehlernamespace Sabre\DAV\Exception;
4*a1a3b679SAndreas Boehler
5*a1a3b679SAndreas Boehleruse Sabre\DAV;
6*a1a3b679SAndreas Boehler
7*a1a3b679SAndreas Boehler/**
8*a1a3b679SAndreas Boehler * RequestedRangeNotSatisfiable
9*a1a3b679SAndreas Boehler *
10*a1a3b679SAndreas Boehler * This exception is normally thrown when the user
11*a1a3b679SAndreas Boehler * request a range that is out of the entity bounds.
12*a1a3b679SAndreas Boehler *
13*a1a3b679SAndreas Boehler * @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/).
14*a1a3b679SAndreas Boehler * @author Evert Pot (http://evertpot.com/)
15*a1a3b679SAndreas Boehler * @license http://sabre.io/license/ Modified BSD License
16*a1a3b679SAndreas Boehler */
17*a1a3b679SAndreas Boehlerclass RequestedRangeNotSatisfiable extends DAV\Exception {
18*a1a3b679SAndreas Boehler
19*a1a3b679SAndreas Boehler    /**
20*a1a3b679SAndreas Boehler     * returns the http statuscode for this exception
21*a1a3b679SAndreas Boehler     *
22*a1a3b679SAndreas Boehler     * @return int
23*a1a3b679SAndreas Boehler     */
24*a1a3b679SAndreas Boehler    function getHTTPCode() {
25*a1a3b679SAndreas Boehler
26*a1a3b679SAndreas Boehler        return 416;
27*a1a3b679SAndreas Boehler
28*a1a3b679SAndreas Boehler    }
29*a1a3b679SAndreas Boehler
30*a1a3b679SAndreas Boehler}
31