b35da9655df498c45d51bf653595414d88972c03
[platform/core/csapi/tizenfx.git] / src / Tizen.Network.IoTConnectivity / Tizen.Network.IoTConnectivity / FindingError.cs
1 /// Copyright 2016 by Samsung Electronics, Inc.,
2 ///
3 /// This software is the confidential and proprietary information
4 /// of Samsung Electronics, Inc. ("Confidential Information"). You
5 /// shall not disclose such Confidential Information and shall use
6 /// it only in accordance with the terms of the license agreement
7 /// you entered into with Samsung.
8
9 namespace Tizen.Network.IoTConnectivity
10 {
11     /// <summary>
12     /// Enumeration for resource found errors
13     /// </summary>
14     internal enum FindingError
15     {
16         /// <summary>
17         /// I/O error
18         /// </summary>
19         Io = 1,
20         /// <summary>
21         /// Out of memory
22         /// </summary>
23         OutOfMemory,
24         /// <summary>
25         /// Permission denied
26         /// </summary>
27         PermissionDenied,
28         /// <summary>
29         /// Not supported
30         /// </summary>
31         NotSupported,
32         /// <summary>
33         /// Invalid parameter
34         /// </summary>
35         InvalidParameter,
36         /// <summary>
37         /// No data available
38         /// </summary>
39         NoData,
40         /// <summary>
41         /// Time out
42         /// </summary>
43         TimeOut,
44         /// <summary>
45         /// IoTivity errors
46         /// </summary>
47         Iotivity,
48         /// <summary>
49         /// Representation errors
50         /// </summary>
51         Representation,
52         /// <summary>
53         /// Invalid type
54         /// </summary>
55         InvalidType,
56         /// <summary>
57         /// Already
58         /// </summary>
59         Already,
60         /// <summary>
61         /// System errors
62         /// </summary>
63         System
64     }
65 }