summaryrefslogtreecommitdiffstats
path: root/lib/private/connector/sabre/exception/entitytoolarge.php
blob: e18ac859dd594a87221827866ef011298f185abc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php


namespace OC\Connector\Sabre\Exception;

class EntityTooLarge extends \Sabre\DAV\Exception {

	/**
	 * Returns the HTTP status code for this exception
	 *
	 * @return int
	 */
	public function getHTTPCode() {

		return 413;

	}

}