tizen beta release
[framework/web/wrt-installer.git] / src / jobs / plugin_install / plugin_installer_errors.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file    plugin_installer_errors.h
18  * @author  Pawel Sikorski (p.sikorski@samgsung.com)
19  * @author  Grzegorz Krawczyk (g.krawczyk@samgsung.com)
20  * @version
21  * @brief
22  */
23
24 #ifndef \
25     WRT_SRC_INSTALLER_CORE_PLUGIN_INSTALLER_TASKS_PLUGIN_INSTALLER_ERRORS_H_
26 #define \
27     WRT_SRC_INSTALLER_CORE_PLUGIN_INSTALLER_TASKS_PLUGIN_INSTALLER_ERRORS_H_
28
29 #include <job_exception_base.h>
30
31 namespace Jobs {
32 namespace PluginInstall {
33 namespace Exceptions {
34 enum Type
35 {
36     Success,                    ///< Success
37
38     WrongPluginPath,            ///< ?
39     MetafileError,              ///< ?
40     AlreadyInstalled,           ///< ?
41     LoadingLibraryError,        ///< Loading library by dlopen failed.
42                                 /// It may be caused by missing symbols
43     InstallationWaiting,         /// Installation failed due to dependencies
44     Unknown                     ///< Temporary error. Try to not use this.
45 };
46
47 DECLARE_JOB_EXCEPTION_BASE(JobExceptionBase, Base, Unknown)
48 DECLARE_JOB_EXCEPTION(Base, PluginPathFailed, WrongPluginPath)
49 DECLARE_JOB_EXCEPTION(Base, PluginMetafileFailed, MetafileError)
50 DECLARE_JOB_EXCEPTION(Base, PluginAlreadyInstalled, AlreadyInstalled)
51 DECLARE_JOB_EXCEPTION(Base, PluginLibraryError, LoadingLibraryError)
52 DECLARE_JOB_EXCEPTION(Base, InstallationWaitingError, InstallationWaiting)
53 DECLARE_JOB_EXCEPTION(Base, UnknownError, Unknown)
54 } //namespace
55 } //namespace
56 } //namespace
57
58 #endif /* WRT_SRC_INSTALLER_CORE_PLUGIN_INSTALLER_TASKS_PLUGIN_INSTALLER_ERRORS_H_ */
59