diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-05-23 21:01:26 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-05-23 21:01:26 +0200 |
commit | adcf942901fd567d97dbe105e8f3dfb7cea738e3 (patch) | |
tree | 3f3721d872941383689ba8ff661960d521af69c4 /lib/public | |
parent | 5a8af2f0be87cada2827ee3b86d2900146a62f77 (diff) | |
parent | 6577bbe887840889e16634b9bf1c4ce247ec265e (diff) | |
download | nextcloud-server-adcf942901fd567d97dbe105e8f3dfb7cea738e3.tar.gz nextcloud-server-adcf942901fd567d97dbe105e8f3dfb7cea738e3.zip |
Merge pull request #24750 from owncloud/lenz1111-share_download_range_requests_support
Http Range requests support in downloads
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Files/UnseekableException.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/public/Files/UnseekableException.php b/lib/public/Files/UnseekableException.php new file mode 100644 index 00000000000..b59f844ce2f --- /dev/null +++ b/lib/public/Files/UnseekableException.php @@ -0,0 +1,35 @@ +<?php +/** + * @author Piotr Filiciak <piotr@filiciak.pl> + * + * @copyright Copyright (c) 2016, ownCloud, Inc. + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Files/UnseekableException class + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP\Files; + +/** + * Exception for seek problem + * @since 9.1.0 + */ +class UnseekableException extends \Exception {} |