epoc32/include/netconerror.h
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
equal deleted inserted replaced
3:e1b950c65cb4 4:837f303aceeb
     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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 /**
       
    23  @file NetConError.h
       
    24 */
       
    25 
       
    26 #ifndef __NETCONERROR_H__
       
    27 #define __NETCONERROR_H__
       
    28 
       
    29 // Network Controller external errors and error strings
       
    30 
       
    31 /**
       
    32 Network Controller Base error
       
    33 
       
    34 @internalComponent
       
    35 */
       
    36 const TInt KNetConErrorBase = -3600;
       
    37 
       
    38 /**
       
    39 Network Controller Undefined Default Database error
       
    40 
       
    41 @internalComponent
       
    42 */
       
    43 const TInt KErrNetConDatabaseDefaultUndefined = KNetConErrorBase - 6;
       
    44 
       
    45 /**
       
    46 Network Controller Unknown Database Type error
       
    47 
       
    48 @internalComponent
       
    49 */
       
    50 const TInt KErrNetConDatabaseTypeUnknown = KNetConErrorBase - 7;
       
    51 
       
    52 /**
       
    53 Network Controller Database Not Found error
       
    54 
       
    55 @internalComponent
       
    56 */
       
    57 const TInt KErrNetConDatabaseNotFound = KNetConErrorBase - 8;
       
    58 
       
    59 /**
       
    60 Network Controller No GPRS  Network error
       
    61 
       
    62 @internalComponent
       
    63 */
       
    64 const TInt KErrNetConNoGPRSNetwork = KNetConErrorBase -9;
       
    65 
       
    66 /**
       
    67 Network Controller Incorrect MSClass error
       
    68 
       
    69 @internalComponent
       
    70 */
       
    71 const TInt KErrNetConIncorrectMSClass = KNetConErrorBase -10;
       
    72 
       
    73 /**
       
    74 Network Controller Inadequate Signal Strengh error
       
    75 
       
    76 @internalTechnology
       
    77 */
       
    78 const TInt KErrNetConInadequateSignalStrengh = KNetConErrorBase -11;
       
    79 
       
    80 /**
       
    81 Network Controller State Machine Not Available error
       
    82 
       
    83 @internalTechnology
       
    84 */
       
    85 const TInt KErrNetConStateMachineNotAvailable = KNetConErrorBase -12;
       
    86 
       
    87 #endif