epoc32/include/xml/dom/xmlengerrors.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     1 /*
     2 * Copyright (c) 2008 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:
    15 *
    16 */
    17 
    18 /** @file
    19 @publishedAll
    20 @released
    21 */
    22 
    23 #ifndef XMLENGDOMERRORS_H
    24 #define XMLENGDOMERRORS_H
    25 
    26 #include <e32def.h> 
    27 
    28 /**	
    29 DOM parsing error.
    30 
    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.  
    34 
    35 @see xmlParserErrors
    36 @see libxml2_xmlerror.h
    37 
    38 These errors are generated by DOM APIs and may occur as a Leave or as a return
    39 code.
    40 */
    41 const TInt KXmlEngErrParsing = -32397;
    42 
    43 /**	DOM save error */
    44 const TInt KXmlEngErrNegativeOutputSize = -32383;
    45 
    46 /**	Encoding not understood*/
    47 const TInt KXmlEngErrWrongEncoding = -32382;
    48 
    49 /** KXmlEngErrNullNode error */
    50 const TInt KXmlEngErrNullNode = -32380;
    51 
    52 /** KXmlEngErrWrongUseOfAPI error */
    53 const TInt KXmlEngErrWrongUseOfAPI = -32381;
    54 
    55 #endif // XMLENGDOMERRORS_H
    56