|
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // Legacy netcon error codes - preserved here since the removal of the netcon |
|
15 // component. |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file |
|
21 */ |
|
22 |
|
23 #ifndef __NETCONERROR_H__ |
|
24 #define __NETCONERROR_H__ |
|
25 |
|
26 // Network Controller external errors and error strings |
|
27 |
|
28 /** |
|
29 Network Controller Base error |
|
30 |
|
31 @internalComponent |
|
32 */ |
|
33 const TInt KNetConErrorBase = -3600; |
|
34 |
|
35 /** |
|
36 Network Controller Undefined Default Database error |
|
37 |
|
38 @internalComponent |
|
39 */ |
|
40 const TInt KErrNetConDatabaseDefaultUndefined = KNetConErrorBase - 6; |
|
41 |
|
42 /** |
|
43 Network Controller Unknown Database Type error |
|
44 |
|
45 @internalComponent |
|
46 */ |
|
47 const TInt KErrNetConDatabaseTypeUnknown = KNetConErrorBase - 7; |
|
48 |
|
49 /** |
|
50 Network Controller Database Not Found error |
|
51 |
|
52 @internalComponent |
|
53 */ |
|
54 const TInt KErrNetConDatabaseNotFound = KNetConErrorBase - 8; |
|
55 |
|
56 /** |
|
57 Network Controller No GPRS Network error |
|
58 |
|
59 @internalComponent |
|
60 */ |
|
61 const TInt KErrNetConNoGPRSNetwork = KNetConErrorBase -9; |
|
62 |
|
63 /** |
|
64 Network Controller Incorrect MSClass error |
|
65 |
|
66 @internalComponent |
|
67 */ |
|
68 const TInt KErrNetConIncorrectMSClass = KNetConErrorBase -10; |
|
69 |
|
70 /** |
|
71 Network Controller Inadequate Signal Strengh error |
|
72 |
|
73 @internalTechnology |
|
74 */ |
|
75 const TInt KErrNetConInadequateSignalStrengh = KNetConErrorBase -11; |
|
76 |
|
77 /** |
|
78 Network Controller State Machine Not Available error |
|
79 |
|
80 @internalTechnology |
|
81 */ |
|
82 const TInt KErrNetConStateMachineNotAvailable = KNetConErrorBase -12; |
|
83 |
|
84 #endif |
|
85 |