2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
23 #ifndef XMLENGDOMERRORS_H
24 #define XMLENGDOMERRORS_H
31 All errors returned by the DOM parser (positive values) are propagated from the
32 open-source library. They can be found in the documentation for Libxml2
33 (version 2.6.10). See http://xmlsoft.org.
36 @see libxml2_xmlerror.h
38 These errors are generated by DOM APIs and may occur as a Leave or as a return
41 const TInt KXmlEngErrParsing = -32397;
44 const TInt KXmlEngErrNegativeOutputSize = -32383;
46 /** Encoding not understood*/
47 const TInt KXmlEngErrWrongEncoding = -32382;
49 /** KXmlEngErrNullNode error */
50 const TInt KXmlEngErrNullNode = -32380;
52 /** KXmlEngErrWrongUseOfAPI error */
53 const TInt KXmlEngErrWrongUseOfAPI = -32381;
55 #endif // XMLENGDOMERRORS_H