mds_plat/metadata_engine_api/inc/mdeinternalerror.h
changeset 0 c53acadfccc6
equal deleted inserted replaced
-1:000000000000 0:c53acadfccc6
       
     1 /*
       
     2 * Copyright (c) 2007-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:  Common internal error code definitions
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MDEINTERNALERROR_H
       
    19 #define MDEINTERNALERROR_H
       
    20 
       
    21 #include <e32def.h>
       
    22 
       
    23 /*
       
    24  * Internal error. Unknown namespace definition.
       
    25  */
       
    26 const TInt KErrMdEUnknownNamespaceDef = -36240;
       
    27 
       
    28 /*
       
    29  * Internal error. Unknown object definition.
       
    30  */
       
    31 const TInt KErrMdEUnknownObjectDef = -36241;
       
    32 
       
    33 /*
       
    34  * Internal error. Unknown property definition.
       
    35  */
       
    36 const TInt KErrMdEUnknownPropertyDef = -36242;
       
    37 
       
    38 /*
       
    39  * Internal error. Unknown relation definition.
       
    40  */
       
    41 const TInt KErrMdEUnknownRelationDef = -36243;
       
    42 
       
    43 /*
       
    44  * Internal error. Unknown event definition.
       
    45  */
       
    46 const TInt KErrMdEUnknownEventDef = -36244;
       
    47 
       
    48 /*
       
    49  * Internal error. Unknown property type.
       
    50  */
       
    51 const TInt KErrMdEUnknownPropertyType = -36245;
       
    52 
       
    53 /*
       
    54  * Internal error. Unknown confidentiality level.
       
    55  */
       
    56 const TInt KErrMdEUnknownConfidentialityLevel = -36246;
       
    57 
       
    58 /*
       
    59  * Internal error. Unknown compare method.
       
    60  */
       
    61 const TInt KErrMdEUnknownCompareMethod = -36247;
       
    62 
       
    63 /*
       
    64  * Internal error. Unknown query type.
       
    65  */
       
    66 const TInt KErrMdEUnknownQueryType = -36248;
       
    67 
       
    68 /*
       
    69  * Internal error. Unknown query result mode.
       
    70  */
       
    71 const TInt KErrMdEUnknownQueryResultMode = -36249;
       
    72 
       
    73 /*
       
    74  * Internal error. Range type is not expected.
       
    75  */
       
    76 const TInt KErrMdEUnknownRangeType = -36250;
       
    77 
       
    78 /*
       
    79  * Internal error. Unknown condition type.
       
    80  */
       
    81 const TInt KErrMdEUnknownConditionType = -36251;
       
    82 
       
    83 /*
       
    84  * Internal error. Unknown condition compare method.
       
    85  */
       
    86 const TInt KErrMdEUnknownConditionCompareMethod = -36252;
       
    87 
       
    88 /*
       
    89  * Internal error. Condition operator is not expected.
       
    90  */
       
    91 const TInt KErrMdEIncorrectConditionOperator = -36253;
       
    92 
       
    93 /*
       
    94  * Internal error. Serialized type is not expected.
       
    95  */
       
    96 const TInt KErrMdEIncorrectSerializedType = -36254;
       
    97 
       
    98 /*
       
    99  * Internal error. Size of serialized type is not expected.
       
   100  */
       
   101 const TInt KErrMdEIncorrectSerializedTypeSize = -36255;
       
   102 
       
   103 /*
       
   104  * Internal error. Schema contains illegal character.
       
   105  */
       
   106 const TInt KErrMdESchemaContainsIllegalCharacter = -36256;
       
   107 
       
   108 /*
       
   109  * Internal error. Schema contains reserved word.
       
   110  */
       
   111 const TInt KErrMdESchemaContainsReservedWord = -36257;
       
   112 
       
   113 #endif /*MDEINTERNALERROR_H*/