diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-03-28 08:25:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-28 08:25:04 +0200 |
commit | 2124ebae72409d6d9da7221a558cddacb3145d74 (patch) | |
tree | 7da867ab54e6626a4eef575a3fc514373af61255 /lib/public | |
parent | b2e34167eb3fa3e6fdfa4ec13353a901e0725ebd (diff) | |
parent | f5b378fa84c351e0fbeda2ac5a695328972f9ecc (diff) | |
download | nextcloud-server-2124ebae72409d6d9da7221a558cddacb3145d74.tar.gz nextcloud-server-2124ebae72409d6d9da7221a558cddacb3145d74.zip |
Merge pull request #8737 from nextcloud/file_return_put_contents
Pass on the return value of file_put_content
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Files/File.php | 2 | ||||
-rw-r--r-- | lib/public/Files/GenericFileException.php | 33 |
2 files changed, 34 insertions, 1 deletions
diff --git a/lib/public/Files/File.php b/lib/public/Files/File.php index 8b57b3cfd87..0f052bc66ad 100644 --- a/lib/public/Files/File.php +++ b/lib/public/Files/File.php @@ -53,7 +53,7 @@ interface File extends Node { * * @param string $data * @throws \OCP\Files\NotPermittedException - * @return void + * @throws \OCP\Files\GenericFileException * @since 6.0.0 */ public function putContent($data); diff --git a/lib/public/Files/GenericFileException.php b/lib/public/Files/GenericFileException.php new file mode 100644 index 00000000000..b5da4aabebd --- /dev/null +++ b/lib/public/Files/GenericFileException.php @@ -0,0 +1,33 @@ +<?php +/** + * @copyright 2018, Roeland Jago Douma <roeland@famdouma.nl> + * + * @author Roeland Jago Douma <roeland@famdouma.nl> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * 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 + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ +namespace OCP\Files; + +/** + * Class GenericFileException + * + * @package OCP\Files + * @since 14.0.0 + */ +class GenericFileException extends \Exception { + +} |