syncmlfw/ds/syncagent/src/nsmldserror.cpp
changeset 0 b497e44ab2fc
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     1 /*
       
     2 * Copyright (c) 2004 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:  Error code conversion
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "nsmldserror.h"
       
    21 
       
    22 // ============================ MEMBER FUNCTIONS ===============================
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 // TNSmlDSError::TNSmlDSError
       
    26 // C++ constructor.
       
    27 // -----------------------------------------------------------------------------
       
    28 //
       
    29 TNSmlDSError::TNSmlDSError() : TNSmlError()
       
    30 	{
       
    31 	}
       
    32 
       
    33 // -----------------------------------------------------------------------------
       
    34 // TNSmlDSError::SyncLogMessage
       
    35 // Converts native error code to message code for UI. Currently does nothing.
       
    36 // -----------------------------------------------------------------------------
       
    37 //
       
    38 TInt TNSmlDSError::SyncLogMessageCode()
       
    39 	{
       
    40 	return TNSmlError::SyncLogErrorCode();
       
    41 	}
       
    42 
       
    43 // -----------------------------------------------------------------------------
       
    44 // TNSmlDSError::ErrorCodeConversion
       
    45 // Converts some error codes to Symbian error codes.
       
    46 // -----------------------------------------------------------------------------
       
    47 //
       
    48 void TNSmlDSError::ErrorCodeConversion()
       
    49 	{
       
    50 	TNSmlError::ErrorCodeConversion();
       
    51 	}
       
    52 
       
    53 // End of File