summaryrefslogtreecommitdiffstats
path: root/external/feedapi.php
diff options
context:
space:
mode:
Diffstat (limited to 'external/feedapi.php')
-rw-r--r--external/feedapi.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/external/feedapi.php b/external/feedapi.php
index a9fdb4c70..be228d490 100644
--- a/external/feedapi.php
+++ b/external/feedapi.php
@@ -35,7 +35,7 @@ use \OCA\News\BusinessLayer\FeedBusinessLayer;
use \OCA\News\BusinessLayer\FolderBusinessLayer;
use \OCA\News\BusinessLayer\ItemBusinessLayer;
use \OCA\News\BusinessLayer\BusinessLayerException;
-use \OCA\News\BusinessLayer\BusinessLayerExistsException;
+use \OCA\News\BusinessLayer\BusinessLayerConflictException;
class FeedAPI extends Controller {
@@ -112,7 +112,7 @@ class FeedAPI extends Controller {
return new JSONResponse($result);
- } catch(BusinessLayerExistsException $ex) {
+ } catch(BusinessLayerConflictException $ex) {
return new JSONResponse(array('message' => $ex->getMessage()),
Http::STATUS_CONFLICT);
} catch(BusinessLayerException $ex) {