datacommsserver/networkcontroller/inc/NetConError.h
changeset 0 dfb7c4ff071f
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     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 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 /**
       
    21  @file NetConError.h
       
    22 */
       
    23 
       
    24 #ifndef __NETCONERROR_H__
       
    25 #define __NETCONERROR_H__
       
    26 
       
    27 // Network Controller external errors and error strings
       
    28 
       
    29 /**
       
    30 Network Controller Base error
       
    31 
       
    32 @internalComponent
       
    33 */
       
    34 const TInt KNetConErrorBase = -3600;
       
    35 
       
    36 /**
       
    37 Network Controller Undefined Default Database error
       
    38 
       
    39 @internalComponent
       
    40 */
       
    41 const TInt KErrNetConDatabaseDefaultUndefined = KNetConErrorBase - 6;
       
    42 
       
    43 /**
       
    44 Network Controller Unknown Database Type error
       
    45 
       
    46 @internalComponent
       
    47 */
       
    48 const TInt KErrNetConDatabaseTypeUnknown = KNetConErrorBase - 7;
       
    49 
       
    50 /**
       
    51 Network Controller Database Not Found error
       
    52 
       
    53 @internalComponent
       
    54 */
       
    55 const TInt KErrNetConDatabaseNotFound = KNetConErrorBase - 8;
       
    56 
       
    57 /**
       
    58 Network Controller No GPRS  Network error
       
    59 
       
    60 @internalComponent
       
    61 */
       
    62 const TInt KErrNetConNoGPRSNetwork = KNetConErrorBase -9;
       
    63 
       
    64 /**
       
    65 Network Controller Incorrect MSClass error
       
    66 
       
    67 @internalComponent
       
    68 */
       
    69 const TInt KErrNetConIncorrectMSClass = KNetConErrorBase -10;
       
    70 
       
    71 /**
       
    72 Network Controller Inadequate Signal Strengh error
       
    73 
       
    74 @internalTechnology
       
    75 */
       
    76 const TInt KErrNetConInadequateSignalStrengh = KNetConErrorBase -11;
       
    77 
       
    78 /**
       
    79 Network Controller State Machine Not Available error
       
    80 
       
    81 @internalTechnology
       
    82 */
       
    83 const TInt KErrNetConStateMachineNotAvailable = KNetConErrorBase -12;
       
    84 
       
    85 #endif
       
    86