Remove unused class BucketAlreadyExistsException 94/24694/2
authorLukasz Wojciechowski <l.wojciechow@partner.samsung.com>
Fri, 18 Jul 2014 07:50:25 +0000 (09:50 +0200)
committerLukasz Wojciechowski <l.wojciechow@partner.samsung.com>
Fri, 18 Jul 2014 08:34:05 +0000 (10:34 +0200)
Change-Id: I382d02081925d3eda9424e869e26ff0b921cba48

src/common/exceptions/BucketAlreadyExistsException.h [deleted file]
src/service/storage/Storage.cpp
test/storage/inmemorystoragebackend/inmemorystoragebackend.cpp
test/storage/storage/buckets.cpp
test/storage/storage/check.cpp
test/storage/storage/policies.cpp

diff --git a/src/common/exceptions/BucketAlreadyExistsException.h b/src/common/exceptions/BucketAlreadyExistsException.h
deleted file mode 100644 (file)
index 9fa7d6f..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
- *
- *    Licensed under the Apache License, Version 2.0 (the "License");
- *    you may not use this file except in compliance with the License.
- *    You may obtain a copy of the License at
- *
- *        http://www.apache.org/licenses/LICENSE-2.0
- *
- *    Unless required by applicable law or agreed to in writing, software
- *    distributed under the License is distributed on an "AS IS" BASIS,
- *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *    See the License for the specific language governing permissions and
- *    limitations under the License.
- */
-/*
- * @file        BucketAlreadyExistsException.h
- * @author      Aleksander Zdyb <a.zdyb@partner.samsung.com>
- * @version     1.0
- * @brief       Implementation of BucketAlreadyExistsException
- */
-
-#ifndef SRC_COMMON_EXCEPTIONS_BUCKETALREADYEXISTSEXCEPTION_H_
-#define SRC_COMMON_EXCEPTIONS_BUCKETALREADYEXISTSEXCEPTION_H_
-
-#include "Exception.h"
-#include "types/PolicyBucketId.h"
-
-#include <exception>
-
-namespace Cynara {
-
-class BucketAlreadyExistsException : public Exception {
-public:
-    BucketAlreadyExistsException() = delete;
-    BucketAlreadyExistsException(const PolicyBucketId &bucketId) : m_bucketId(bucketId) {}
-    virtual ~BucketAlreadyExistsException() = default;
-
-    virtual const std::string message(void) const {
-        return "BucketAlreadyExistsException";
-    }
-
-private:
-    PolicyBucketId m_bucketId;
-
-public:
-    const PolicyBucketId &bucketId() const {
-        return m_bucketId;
-    }
-};
-
-} /* namespace Cynara */
-
-#endif // SRC_COMMON_EXCEPTIONS_BUCKETALREADYEXISTSEXCEPTION_H_
index 3792721..1b1a29a 100644 (file)
@@ -26,7 +26,6 @@
 #include "types/pointers.h"
 #include "types/PolicyType.h"
 #include "exceptions/NotImplementedException.h"
-#include "exceptions/BucketAlreadyExistsException.h"
 #include "exceptions/DefaultBucketDeletionException.h"
 
 #include <iostream>
index bd682b3..34a3c42 100644 (file)
@@ -28,7 +28,6 @@
 #include "types/PolicyResult.h"
 #include "types/PolicyCollection.h"
 #include "exceptions/DefaultBucketDeletionException.h"
-#include "exceptions/BucketAlreadyExistsException.h"
 #include "exceptions/BucketNotExistsException.h"
 #include "storage/StorageBackend.h"
 #include "storage/InMemoryStorageBackend.h"
index c7d19ec..bbde254 100644 (file)
@@ -30,7 +30,6 @@
 #include "types/PolicyCollection.h"
 #include "types/pointers.h"
 #include "exceptions/DefaultBucketDeletionException.h"
-#include "exceptions/BucketAlreadyExistsException.h"
 #include "storage/Storage.h"
 #include "storage/StorageBackend.h"
 
index c91cd1f..492e7fb 100644 (file)
@@ -29,7 +29,6 @@
 #include "types/PolicyCollection.h"
 #include "types/pointers.h"
 #include "exceptions/DefaultBucketDeletionException.h"
-#include "exceptions/BucketAlreadyExistsException.h"
 #include "storage/Storage.h"
 #include "storage/StorageBackend.h"
 
index d43d918..8fcf900 100644 (file)
@@ -29,7 +29,6 @@
 #include "types/PolicyCollection.h"
 #include "types/pointers.h"
 #include "exceptions/DefaultBucketDeletionException.h"
-#include "exceptions/BucketAlreadyExistsException.h"
 #include "storage/Storage.h"
 #include "storage/StorageBackend.h"