diff -r 000000000000 -r 5a93021fdf25 dbcreator/inc/cdcerrors.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dbcreator/inc/cdcerrors.h Thu Dec 17 08:55:21 2009 +0200 @@ -0,0 +1,54 @@ +/* +* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Declaration of the error codes of the DbCreator. +* +*/ + + + + +#ifndef DBCREATOR_ERRORS_H +#define DBCREATOR_ERRORS_H + +// INCLUDE FILES + +#include + +// The potential errors. +const TInt KErrApIsNotCreated = -600; +const TInt KErrGivenRealIdNotExists = -601; +const TInt KErrGivenRealNameNotExists = -602; +const TInt KErrTooMuchTag = -603; +const TInt KErrInvaildPolicyId = -604; +const TInt KErrComment = -605; +const TInt KErrInvalidContent = -606; +const TInt KErrAssertionFailed = -607; +const TInt KErrFileCannotBeOpened = -608; +const TInt KErrWLANTablesMissing = -609; +const TInt KErrInvalidParameter = -610; +const TInt KErrInvalidExtension = -611; + +//Panic codes +const TInt KErrInvalidCase = -700; +const TInt KErrOutOfRange = -701; + +//Panic texts +_LIT16( KPanicInvalidCase, "Invalid case" ); +_LIT16( KPanicOutOfRange, "Value is out of range" ); + + +#endif // DBCREATOR_ERRORS_H + + +// End of File. \ No newline at end of file