|
1 /** |
|
2 * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Network Controller panic codes |
|
16 * |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 |
|
22 /** |
|
23 @file NetConPanic.h |
|
24 @internalComponent |
|
25 */ |
|
26 |
|
27 #ifndef __NETCONPANIC_H__ |
|
28 #define __NETCONPANIC_H__ |
|
29 |
|
30 #include <e32def.h> |
|
31 |
|
32 namespace NetworkController |
|
33 { |
|
34 /** |
|
35 panic codes for the Network Controller classes |
|
36 */ |
|
37 enum TNetConPanic |
|
38 { |
|
39 ENetConBadStartType, ///< Network Controller Bad Start Type panic code |
|
40 ENetConNoCurrentRequest, ///< Network Controller No Current Request panic code |
|
41 ENetConBadDialogServerCompleteSignal, ///< Network Controller Bad Dialog Server Complete Signal panic code |
|
42 ENetConBadRequestCallback, ///< Network Controller Bad Request Callback panic code |
|
43 ENetConTelBearerMissing, ///< Network Controller Tel Bearer Missing panic code |
|
44 ETelBearerBadState, ///< TelBearer Bad State panic code |
|
45 ETelBearerTsyNameMissing, ///< TelBearer TsyName Missing panic code |
|
46 ETelBearerSigStrengthWatcherMissing, ///< TelBearer Signal Strength Watcher Missing panic code |
|
47 ENetConTelBearerAlreadyChecking ///< Network Controller TelBearer Already Checking panic code |
|
48 }; |
|
49 } |
|
50 |
|
51 /** |
|
52 Panic - programming error! |
|
53 @param aPanic,Network Controller Panic. |
|
54 */ |
|
55 GLREF_C void NetConPanic(NetworkController::TNetConPanic aPanic); |
|
56 |
|
57 #endif // __NETCONPANIC_H__ |
|
58 |