50
|
1 |
// Copyright (c) 2002-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 |
//
|
|
15 |
|
|
16 |
#include <errors/generic/netconerr.rls>
|
|
17 |
|
|
18 |
/*
|
|
19 |
const TInt KNetConErrorBase = -3600;
|
|
20 |
const TInt KErrNetConDatabaseDefaultUndefined = KNetConErrorBase - 6;
|
|
21 |
const TInt KErrNetConDatabaseTypeUnknown = KNetConErrorBase - 7;
|
|
22 |
const TInt KErrNetConDatabaseNotFound = KNetConErrorBase - 8;
|
|
23 |
const TInt KErrNetConNoGPRSNetwork = KNetConErrorBase -9;
|
|
24 |
const TInt KErrNetConIncorrectMSClass = KNetConErrorBase -10;
|
|
25 |
const TInt KErrNetConInadequateSignalStrengh = KNetConErrorBase -11;
|
|
26 |
const TInt KErrNetConStateMachineNotAvailable = KNetConErrorBase -12;
|
|
27 |
*/
|
|
28 |
|
|
29 |
RESOURCE ARRAY r_error_net_con_errors
|
|
30 |
{
|
|
31 |
items=
|
|
32 |
{
|
|
33 |
SINGLE_ERROR
|
|
34 |
{
|
|
35 |
text=r_error_netcon_database_default_undefined; // -3606
|
|
36 |
},
|
|
37 |
SINGLE_ERROR
|
|
38 |
{
|
|
39 |
text=r_error_netcon_database_type_unknown; // -3607
|
|
40 |
},
|
|
41 |
SINGLE_ERROR
|
|
42 |
{
|
|
43 |
text=r_error_netcon_database_not_found; // -3608
|
|
44 |
},
|
|
45 |
SINGLE_ERROR
|
|
46 |
{
|
|
47 |
text=r_error_netcon_no_packet_network; // -3609
|
|
48 |
},
|
|
49 |
SINGLE_ERROR
|
|
50 |
{
|
|
51 |
text=r_error_netcon_incorrect_msclass; // -3610
|
|
52 |
},
|
|
53 |
SINGLE_ERROR
|
|
54 |
{
|
|
55 |
text=r_error_netcon_inadequate_signal_strength; // -3611
|
|
56 |
},
|
|
57 |
SINGLE_ERROR
|
|
58 |
{
|
|
59 |
text=r_error_netcon_statemachine_not_available; // -3612
|
|
60 |
}
|
|
61 |
};
|
|
62 |
}
|
|
63 |
|
|
64 |
RESOURCE TBUF r_error_netcon_database_default_undefined { buf=STRING_r_error_netcon_database_default_undefined; }
|
|
65 |
RESOURCE TBUF r_error_netcon_database_type_unknown { buf=STRING_r_error_netcon_database_type_unknown ; }
|
|
66 |
RESOURCE TBUF r_error_netcon_database_not_found { buf=STRING_r_error_netcon_database_not_found ; }
|
|
67 |
RESOURCE TBUF r_error_netcon_no_packet_network { buf=STRING_r_error_netcon_no_packet_network ; }
|
|
68 |
RESOURCE TBUF r_error_netcon_incorrect_msclass { buf=STRING_r_error_netcon_incorrect_msclass ; }
|
|
69 |
RESOURCE TBUF r_error_netcon_inadequate_signal_strength { buf=STRING_r_error_netcon_inadequate_signal_strength; }
|
|
70 |
RESOURCE TBUF r_error_netcon_statemachine_not_available { buf=STRING_r_error_netcon_statemachine_not_available; }
|