xml/xmlfw/src/xmlframeworkerrors/xmlframeworkerr.ra
changeset 0 e35f40988205
child 24 74f0b3eb154c
equal deleted inserted replaced
-1:000000000000 0:e35f40988205
       
     1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 RESOURCE ARRAY  r_error_res_framework_errors
       
    17 	{
       
    18 	items=
       
    19 		{
       
    20 		SINGLE_ERROR
       
    21 			{
       
    22 			text=r_framework_error_unexpectedleaveCode;	
       
    23 			},
       
    24 		SINGLE_ERROR
       
    25 			{
       
    26 			text=r_framework_error_unexpectedstate;	
       
    27 			},
       
    28 		SINGLE_ERROR
       
    29 			{
       
    30 			text=r_framework_error_unexpectedlogic;	
       
    31 			},
       
    32 		SINGLE_ERROR
       
    33 			{
       
    34 			text=r_framework_error_positionmisallignment;	
       
    35 			},
       
    36 		SINGLE_ERROR
       
    37 			{
       
    38 			text=r_framework_error_referencecountnegative;	
       
    39 			},
       
    40 		SINGLE_ERROR
       
    41 			{
       
    42 			text=r_framework_error_nullpointer;	
       
    43 			}
       
    44 		};
       
    45 	}
       
    46 
       
    47 // Errors -5000 to -5004
       
    48 RESOURCE TBUF r_framework_error_unexpectedleaveCode{ buf="A leave code other than that expected was received."; }
       
    49 RESOURCE TBUF r_framework_error_unexpectedstate{ buf="A state other than that expected was reached."; }
       
    50 RESOURCE TBUF r_framework_error_unexpectedlogic{ buf="Logic other than that expected was reached."; }
       
    51 RESOURCE TBUF r_framework_error_positionmisallignment{ buf="The internal document positioning has gone beyond EOF and has failed."; }
       
    52 RESOURCE TBUF r_framework_error_referencecountnegative{ buf="A reference count has reached a negative value."; }
       
    53 RESOURCE TBUF r_framework_error_nullpointer{ buf="The pointer is NULL. It can not be dereferenced."; }