upload tizen1.0 source
[pkgs/o/oma-ds-service.git] / include / ServiceEngine / SE_Error.h
1 /*
2  * oma-ds-service
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: JuHak Park <juhaki.park@samsung.com>,
7  *          JuneHyuk Lee <junhyuk7.lee@samsung.com>,
8  *          SunBong Ha <sunbong.ha@samsung.com>
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  * http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  *
22  */
23
24
25
26
27
28 /*
29  * For any sort of issue you concern as to this software,
30  * you may use following point of contact.
31  * All resources contributed on this software
32  * are orinigally written by S-Core Inc., a member of Samsung Group.
33  *
34  * SeongWon Shim <seongwon.shim@samsung.com>
35  */
36
37 /**
38  *   @SE_Error.h
39  *   @version                                                                   0.1
40  *   @brief                                                                             This file is the header file of Error is defined
41  */
42
43 #ifndef SE_ERROR_H_
44 #define SE_ERROR_H_
45
46 typedef enum {
47         ERROR_UNKNOWN = 0,
48         SE_INTERNAL_OK = 1,
49         SE_INTERNAL_ERROR = 2,
50         SE_INTERNAL_NO_MEMORY  = 3,
51         SE_INTERNAL_NOT_DEFINED = 4,
52         SE_INTERNAL_DA_ERROR = 5,
53         SE_INTERNAL_EVENT_ERROR = 6,
54         SE_INTERNAL_ENGINE_CONTROLER_ERROR = 7,
55         SE_INTERNAL_SCHEDULER_ERROR = 8,
56         SE_INTERNAL_SA_ERROR = 9,
57         SE_INTERNAL_MISCONFIGURATION = 10,
58         SE_INTERNAL_CANCEL = 11,
59
60 } SE_ErrorType;
61
62 #endif /* SE_ERROR_H_ */